diff options
author | Allan McRae <allan@archlinux.org> | 2011-06-11 04:00:20 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-15 16:13:02 +0200 |
commit | 700a5374f1c3ab87a194ad7e5472b72072d04454 (patch) | |
tree | 9fb61874a4dc6317fc3bd35fcf65b470b1fa19f2 /scripts | |
parent | 82a701401cd31621f87956dc60c97ab6fbee4add (diff) | |
download | pacman-700a5374f1c3ab87a194ad7e5472b72072d04454.tar.gz pacman-700a5374f1c3ab87a194ad7e5472b72072d04454.tar.xz |
makepkg: reword purge message
Clarfiy that it is unwanted files are being removed rather than "other"
files (whatever they are...).
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 419036dc..9e0a667d 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -856,7 +856,7 @@ tidy_install() { fi if [[ $(check_option purge) = "y" && -n ${PURGE_TARGETS[*]} ]]; then - msg2 "$(gettext "Purging other files...")" + msg2 "$(gettext "Purging unwanted files...")" local pt for pt in "${PURGE_TARGETS[@]}"; do if [[ ${pt} = ${pt//\/} ]]; then |