summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2002-06-08 14:24:20 +0000
committerDave Beckett <dave@dajobe.org>2002-06-08 14:24:20 +0000
commit10a33138531049fd326ef60db6693f80d18e32d0 (patch)
tree1d2847c3da72543b85beea6be265f8bf60889a53 /autogen.sh
parent087c9f991a0971cb6830e24e1cbd7cf627083d81 (diff)
downloadraptor-10a33138531049fd326ef60db6693f80d18e32d0.tar.gz
Delete libtool generated files before running automake (which invokes
libtoolize to do this)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 014c601f..f0e41993 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -43,7 +43,9 @@ else
DIE="yes"
fi
-
+# Ensure that these are created by the versions on this system
+# (indirectly via automake)
+rm -f libtool ltmain.sh
if (automake --version) < /dev/null > /dev/null 2>&1 ; then
if (automake --version | awk 'NR==1 { if( $4 >= '$automake_vers') \
exit 1; exit 0; }');