Skip to content

Commit 217aaaf

Browse files
falconindyallanmcrae
authored andcommitted
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 <[email protected]> Signed-off-by: Allan McRae <[email protected]>
1 parent ed511b1 commit 217aaaf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

autogen.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#!/bin/sh -xu
1+
#!/bin/sh -x
22

33
autoreconf -i
4-
(cd build-aux && (patch -Np0 -i ltmain-asneeded.patch || true))
4+
patch -d build-aux -Np0 -i ltmain-asneeded.patch
5+
6+
exit 0

0 commit comments

Comments
 (0)