From: Jens Thiele Date: Wed, 14 Feb 2007 10:58:32 +0000 (+0000) Subject: newer autoreconf (autoconf) versions don't have the -M option and no replacement... X-Git-Tag: v0.3~11 X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=commitdiff_plain;h=5abe4a1f9289fece6ac1855f1fe4d105c1597020;hp=339b53b0f377422e56fc4a16f060d06f5e9d8659 newer autoreconf (autoconf) versions don't have the -M option and no replacement => as workaround run aclocal manually --- diff --git a/test-build-install-use b/test-build-install-use index db3e5d6..3c54205 100755 --- a/test-build-install-use +++ b/test-build-install-use @@ -28,7 +28,10 @@ function prepend() { } function build() { - autoreconf -f -i $@ + # newer autoreconf (autoconf) versions don't have the -M option and no replacement :-( + # todo: this IMHO should be filed as bug against autoconf + # ugly workaround + autoreconf -f -i $@ || (autoreconf -f -i && aclocal $(echo "$@"|sed 's,-M,-I,')) ./configure --prefix="$INSTPREFIX" if $DOCLEAN; then $MAKE distclean