From 5abe4a1f9289fece6ac1855f1fe4d105c1597020 Mon Sep 17 00:00:00 2001 From: Jens Thiele Date: Wed, 14 Feb 2007 10:58:32 +0000 Subject: [PATCH] newer autoreconf (autoconf) versions don't have the -M option and no replacement => as workaround run aclocal manually --- test-build-install-use | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) 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 -- 1.7.1