X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=test-build-install-use;h=b45957e2d6fbc383b0fb2e6e0a644a12757781ae;hp=2d281a4b49576dd7c39882c646ad486ad7bf453a;hb=1450c0649dc1f1414fd8e051b8d452f4adcb4b24;hpb=8211c521bbe995d6ec8c889b73f02692a4367c7d diff --git a/test-build-install-use b/test-build-install-use index 2d281a4..b45957e 100755 --- a/test-build-install-use +++ b/test-build-install-use @@ -17,7 +17,7 @@ mkdir "$INSTDIR" mkdir "$BUILDDIR" INSTPREFIX="$INSTDIR/usr" MAKE="dmake" -DOCLEAN="false" +DOCLEAN="true" function prepend() { if [ "x$1" = "x" ]; then @@ -28,7 +28,11 @@ function prepend() { } function build() { - autoreconf -f -i $@ + # newer autoreconf (autoconf) versions don't have the -M option and no real replacement :-( + # (you can only set ACLOCAL_AMFLAGS in the Makefile.am) + # todo: this IMHO should be filed as bug against autoconf + # ugly workaround + autoreconf -f -i $@ || { aclocal --force $(echo "$@"|sed 's,-M,-I,') && libtoolize --copy --force && autoconf --force && automake --add-missing --copy --force-missing; } ./configure --prefix="$INSTPREFIX" if $DOCLEAN; then $MAKE distclean @@ -41,8 +45,6 @@ function build() { $MAKE $MAKE clean $MAKE distcheck - else - $MAKE dist fi $MAKE install