mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-21 15:28:50 -05:00
autogen.sh: remove useless shell flag and subshells
$ ./autogen.sh ./autogen.sh: 3: ./autogen.sh: BASH_SOURCE: parameter not set The -u flag causes this (and lots of other mysterious problems). Since there aren't even any variables in this script, it makes no sense to use it. Signed-off-by: Dave Reisner <dreisner@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
ed511b141f
commit
217aaaf3ea
@ -1,4 +1,6 @@
|
||||
#!/bin/sh -xu
|
||||
#!/bin/sh -x
|
||||
|
||||
autoreconf -i
|
||||
(cd build-aux && (patch -Np0 -i ltmain-asneeded.patch || true))
|
||||
patch -d build-aux -Np0 -i ltmain-asneeded.patch
|
||||
|
||||
exit 0
|
||||
|
Loading…
Reference in New Issue
Block a user