From: Martin Baulig Date: Tue, 22 Feb 2000 19:53:43 +0000 (+0000) Subject: Don't run libtoolize when `NO_LIBTOOLIZE' is set. X-Git-Tag: GNOME_COMMON_1_2_1~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c14e63340f99a177360042083cfff9c4c00cf27;p=platform%2Fupstream%2Fgnome-common.git Don't run libtoolize when `NO_LIBTOOLIZE' is set. 2000-02-22 Martin Baulig * autogen.sh: Don't run libtoolize when `NO_LIBTOOLIZE' is set. svn path=/trunk/; revision=1121 --- diff --git a/macros/ChangeLog b/macros/ChangeLog index 91d15f7..780a403 100644 --- a/macros/ChangeLog +++ b/macros/ChangeLog @@ -1,3 +1,7 @@ +2000-02-22 Martin Baulig + + * autogen.sh: Don't run libtoolize when `NO_LIBTOOLIZE' is set. + 2000-02-09 Raja R Harinath * autogen.sh: Fix GNUism introduced in the previous fix. diff --git a/macros/autogen.sh b/macros/autogen.sh index f08dc52..51ced27 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