diff options
author | Dan McGee <dan@archlinux.org> | 2007-10-26 18:36:08 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-10-26 18:36:58 -0500 |
commit | b609cb0a5dfe595318975dfe4c6c37a168b7d979 (patch) | |
tree | 15e24b4f354e3c4fb7a995669afa2179295a6433 /scripts | |
parent | 0cff7c6bdf5461c3286edc940aabb88d63345381 (diff) | |
download | pacman-b609cb0a5dfe595318975dfe4c6c37a168b7d979.tar.xz |
makepkg: readd -p option that was lost in getopt conversion
The -p option was accidentally dropped in commit
54b71f0427e87e6d525423df06f8a06f2b71c518. Readd it.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makepkg.sh.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index df6c92e3..8f5ff38d 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1092,6 +1092,7 @@ while true; do -L|--log) LOGGING=1 ;; -m|--nocolor) USE_COLOR='n' ;; -o|--nobuild) NOBUILD=1 ;; + -p) shift; BUILDSCRIPT=$1 ;; -r|--rmdeps) RMDEPS=1 ;; -R|--repackage) REPKG=1 ;; --source) SOURCEONLY=1 ;; |