mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
895f6d2b59
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>
8 lines
129 B
Bash
Executable File
8 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
|