diff options
author | Dan McGee <dan@archlinux.org> | 2007-09-28 07:36:48 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-09-28 07:36:48 +0200 |
commit | 69d68ef0b5804435bdf19d15e139f644639caa7b (patch) | |
tree | 3d4074d008bc20eb5948510c6c386f9e7522db0c | |
parent | 48bf088e65403049dc430fadf360355a8d5dc07d (diff) | |
download | pacman-69d68ef0b5804435bdf19d15e139f644639caa7b.tar.gz pacman-69d68ef0b5804435bdf19d15e139f644639caa7b.tar.xz |
makepkg: When we add an option, we should probably make it work
The -A,--ignorearch option was added and given help text, but never actually
listed as valid to the option parser. Fix this.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | scripts/makepkg.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index b73e8a86..babde10e 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1047,8 +1047,8 @@ if [ -z "$SRCROOT" ]; then fi # Parse Command Line Options. -OPT_SHORT="bcCdefFghiLmop:rRsSV" -OPT_LONG="asroot,builddeps,clean,cleancache,nodeps,noextract,force,geninteg,help,install,log" +OPT_SHORT="AbcCdefFghiLmop:rRsSV" +OPT_LONG="ignorearch,asroot,builddeps,clean,cleancache,nodeps,noextract,force,geninteg,help,install,log" OPT_LONG="$OPT_LONG,nocolor,nobuild,rmdeps,repackage,source,syncdeps,usesudo,version" # Pacman Options OPT_LONG="$OPT_LONG,noconfirm,noprogressbar" |