diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-02-28 18:17:54 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-02-28 18:17:54 +0000 |
commit | fd1355aedd501fce565321fd56e94bf53cc94ff7 (patch) | |
tree | 192a2e558be4bd306025b9f998807c8159e02f70 /llvm/autoconf/AutoRegen.sh | |
parent | 7c6c36d92d2cf9758fe2880573763f89a3ef575f (diff) | |
download | bcm5719-llvm-fd1355aedd501fce565321fd56e94bf53cc94ff7.tar.gz bcm5719-llvm-fd1355aedd501fce565321fd56e94bf53cc94ff7.zip |
Drop libtool from llvm.
We were only using it so find the shared library extension and nm. There are
simpler ways to do those things :-)
llvm-svn: 202524
Diffstat (limited to 'llvm/autoconf/AutoRegen.sh')
-rwxr-xr-x | llvm/autoconf/AutoRegen.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/autoconf/AutoRegen.sh b/llvm/autoconf/AutoRegen.sh index cbca7387a85..86a26d925fc 100755 --- a/llvm/autoconf/AutoRegen.sh +++ b/llvm/autoconf/AutoRegen.sh @@ -17,7 +17,6 @@ clean() { want_autoconf_version='2\.60' want_autoheader_version=$want_autoconf_version want_aclocal_version='1\.9\.6' -want_libtool_version='1\.5\.22' ### END NOTE ######################################################### outfile=configure @@ -26,7 +25,6 @@ configfile=configure.ac want_autoconf_version_clean=$(clean $want_autoconf_version) want_autoheader_version_clean=$(clean $want_autoheader_version) want_aclocal_version_clean=$(clean $want_aclocal_version) -want_libtool_version_clean=$(clean $want_libtool_version) test -d autoconf && test -f autoconf/$configfile && cd autoconf test -f $configfile || die "Can't find 'autoconf' dir; please cd into it first" @@ -36,8 +34,6 @@ aclocal --version | grep '^aclocal.*'$want_aclocal_version > /dev/null test $? -eq 0 || die "Your aclocal was not detected as being $want_aclocal_version_clean" autoheader --version | grep '^autoheader.*'$want_autoheader_version > /dev/null test $? -eq 0 || die "Your autoheader was not detected as being $want_autoheader_version_clean" -libtool --version | grep $want_libtool_version > /dev/null -test $? -eq 0 || die "Your libtool was not detected as being $want_libtool_version_clean" echo "" echo "### NOTE: ############################################################" echo "### If you get *any* warnings from autoconf below you MUST fix the" |