mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 15:45:03 -04:00
217aaaf3ea
$ ./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>
7 lines
85 B
Bash
Executable File
7 lines
85 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
autoreconf -i
|
|
patch -d build-aux -Np0 -i ltmain-asneeded.patch
|
|
|
|
exit 0
|