X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=test-build-install-use;h=b45957e2d6fbc383b0fb2e6e0a644a12757781ae;hp=2ab016c42f76e07ec31ebfcd0497f52180b68430;hb=e98b5dc1fe10ed25b986fc5cfb8fd0ba2f329a3a;hpb=177f7aebeed4567e999f4796914588143ba35da9 diff --git a/test-build-install-use b/test-build-install-use index 2ab016c..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,10 +28,11 @@ function prepend() { } function build() { - # newer autoreconf (autoconf) versions don't have the -M option and no replacement :-( + # 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 $@ || (autoreconf -f -i && aclocal --force $(echo "$@"|sed 's,-M,-I,')) + 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