
autogen.sh expects to run from within the winsup dir, so set CWD accordingly before running autotools. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
7 lines
129 B
Bash
Executable file
7 lines
129 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd $(dirname $0)
|
|
/usr/bin/aclocal --force
|
|
/usr/bin/autoconf -f
|
|
/usr/bin/automake -ac
|
|
/bin/rm -rf autom4te.cache
|