aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Baulig <martin@home-of-linux.org>2000-02-23 03:53:43 +0800
committerMartin Baulig <martin@src.gnome.org>2000-02-23 03:53:43 +0800
commit2a8de7c53dfed4beec4a51ba41160d45c1bffd8b (patch)
treef6b376c4e0e4a334012c998864cc9fff43189e9b
parentdd6c88eafefcc640c31277f5fb07d5d711f53e48 (diff)
downloadgsoc2013-evolution-2a8de7c53dfed4beec4a51ba41160d45c1bffd8b.tar
gsoc2013-evolution-2a8de7c53dfed4beec4a51ba41160d45c1bffd8b.tar.gz
gsoc2013-evolution-2a8de7c53dfed4beec4a51ba41160d45c1bffd8b.tar.bz2
gsoc2013-evolution-2a8de7c53dfed4beec4a51ba41160d45c1bffd8b.tar.lz
gsoc2013-evolution-2a8de7c53dfed4beec4a51ba41160d45c1bffd8b.tar.xz
gsoc2013-evolution-2a8de7c53dfed4beec4a51ba41160d45c1bffd8b.tar.zst
gsoc2013-evolution-2a8de7c53dfed4beec4a51ba41160d45c1bffd8b.zip
Don't run libtoolize when `NO_LIBTOOLIZE' is set.
2000-02-22 Martin Baulig <martin@home-of-linux.org> * autogen.sh: Don't run libtoolize when `NO_LIBTOOLIZE' is set. svn path=/trunk/; revision=1905
-rw-r--r--macros/ChangeLog4
-rw-r--r--macros/autogen.sh6
2 files changed, 8 insertions, 2 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index 91d15f718f..780a4036bb 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,7 @@
+2000-02-22 Martin Baulig <martin@home-of-linux.org>
+
+ * autogen.sh: Don't run libtoolize when `NO_LIBTOOLIZE' is set.
+
2000-02-09 Raja R Harinath <harinath@cs.umn.edu>
* autogen.sh: Fix GNUism introduced in the previous fix.
diff --git a/macros/autogen.sh b/macros/autogen.sh
index f08dc52149..51ced27f92 100644
--- a/macros/autogen.sh
+++ b/macros/autogen.sh
@@ -139,8 +139,10 @@ do
test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
fi
if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then
- echo "Running libtoolize..."
- libtoolize --force --copy
+ if test -z "$NO_LIBTOOLIZE" ; then
+ echo "Running libtoolize..."
+ libtoolize --force --copy
+ fi
fi
echo "Running aclocal $aclocalinclude ..."
aclocal $aclocalinclude