diff options
author | Alastair Hughes <hobbitalastair@gmail.com> | 2016-04-03 06:19:49 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2016-05-18 07:45:55 +0200 |
commit | 87082e3f44c4f92c63d881db38a0fff0565fc9bc (patch) | |
tree | 27d1d2f3fb8eb706b4cb8b945b24061d1c94c485 /scripts | |
parent | 7bebe4deff0afd4e220b5c4d6024bffb08bd794f (diff) | |
download | pacman-87082e3f44c4f92c63d881db38a0fff0565fc9bc.tar.gz pacman-87082e3f44c4f92c63d881db38a0fff0565fc9bc.tar.xz |
makepkg: ignore the architecture for --printsrcinfo
Signed-off-by: Alastair Hughes <hobbitalastair@gmail.com>
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 a909fbb5..b87eb8a2 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1710,7 +1710,7 @@ while true; do -o|--nobuild) NOBUILD=1 ;; -p) shift; BUILDFILE=$1 ;; --packagelist) PACKAGELIST=1 IGNOREARCH=1;; - --printsrcinfo) PRINTSRCINFO=1 ;; + --printsrcinfo) PRINTSRCINFO=1 IGNOREARCH=1;; -r|--rmdeps) RMDEPS=1 ;; -R|--repackage) REPKG=1 ;; --sign) SIGNPKG='y' ;; |