Files
org-enlightenment/autogen.sh
Stefan Schmidt a7eb22f38f e/autogen.sh: fix exit status when using NOCONFIGURE
Patch from obiwahn on IRC. Thanks!

SVN revision: 79174
2012-11-12 15:46:00 +00:00

12 lines
184 B
Bash
Executable File

#!/bin/sh
rm -rf autom4te.cache
rm -f aclocal.m4 ltmain.sh config.cache
autoreconf --symlink --install || exit 1
if [ -z "$NOCONFIGURE" ]; then
exec ./configure -C "$@"
fi
exit 0