From 9abd8baaaaf8d75a998352d280fe88676ec79bab Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 8 Mar 2007 01:06:41 +0100 Subject: * bootstrap: Run libtool, if necessary. --- bootstrap | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bootstrap') diff --git a/bootstrap b/bootstrap index 887ec53c7..dde3e2177 100755 --- a/bootstrap +++ b/bootstrap @@ -478,11 +478,17 @@ rm -fr $bt $bt2 || exit # Reconfigure, getting other files. for command in \ + libtool \ 'aclocal --force -I m4' \ 'autoconf --force' \ 'autoheader --force' \ 'automake --add-missing --copy --force-missing'; do + if test "$command" = libtool; then + grep '^[ ]*AM_PROG_LIBTOOL\>' configure.ac >/dev/null || + continue + command='libtoolize -c -f' + fi echo "$0: $command ..." $command || exit done -- cgit v1.2.3-54-g00ecf