diff options
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -3,11 +3,14 @@ set -e set -x -test -f ./Makefile && make distclean +OLDPWD=$(pwd) +cd $(dirname $0) +test -f Makefile && make distclean aclocal autoheader automake --force-missing --add-missing autoconf -./configure $@ && make -j${BUILDJOBS:-4} all +cd ${OLDPWD} +$(dirname $0)/configure $@ && make -j${BUILDJOBS:-4} all |