diff options
author | Allan McRae <allan@archlinux.org> | 2012-09-09 05:16:12 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-09-18 15:41:23 +0200 |
commit | ea452d027731e007e58e84e93df72ca66b034f47 (patch) | |
tree | 5026093d055ea9de27ba2944b40ad5be4dd03c49 /scripts | |
parent | 8b9cb8e03de275fb7b71b3fdc970856158b10ff2 (diff) | |
download | pacman-ea452d027731e007e58e84e93df72ca66b034f47.tar.gz pacman-ea452d027731e007e58e84e93df72ca66b034f47.tar.xz |
makepkg: fix order of --help output
Small alphabeticalization issue in options passable to pacman.
Signed-off-by: Allan McRae <allan@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 aed6b8be..6de7b4f3 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -2261,8 +2261,8 @@ usage() { echo printf -- "$(gettext "These options can be passed to %s:")\n" "pacman" echo - printf -- "$(gettext " --noconfirm Do not ask for confirmation when resolving dependencies")\n" printf -- "$(gettext " --asdeps Install packages as non-explicitly installed")\n" + printf -- "$(gettext " --noconfirm Do not ask for confirmation when resolving dependencies")\n" printf -- "$(gettext " --noprogressbar Do not show a progress bar when downloading files")\n" echo printf -- "$(gettext "If %s is not specified, %s will look for '%s'")\n" "-p" "makepkg" "$BUILDSCRIPT" |