diff options
author | Julian Missig <julianm@src.gnome.org> | 2000-05-21 21:36:20 +0000 |
---|---|---|
committer | Julian Missig <julianm@src.gnome.org> | 2000-05-21 21:36:20 +0000 |
commit | b8db88e552080a763e18388bfccd109ee5f4393f (patch) | |
tree | d7eefd4bd85f849b5ade84048b10edc61b0475f9 /macros/autogen.sh | |
parent | f22d453fd3e58403ed62e36bc843c90b42ef048d (diff) | |
download | shared-mime-info-b8db88e552080a763e18388bfccd109ee5f4393f.tar.gz |
Gabber now has *working* i18n!
svn path=/trunk/; revision=1236
Diffstat (limited to 'macros/autogen.sh')
-rw-r--r-- | macros/autogen.sh | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh index 18cfd607..f08dc521 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -105,7 +105,7 @@ do aclocalinclude="$ACLOCAL_FLAGS" for k in $aclocalinclude; do if test -d $k; then - if [ -f $k/gnome.m4 -a "$GNOME_INTERFACE_VERSION" = "1" ]; then + if [ -f $k/gnome.m4 -a "$GNOME_INTERFACE_VERSION" = "1.0" ]; then rm -f $DELETEFILES fi fi @@ -113,7 +113,7 @@ do for k in $macrodirs; do if test -d $k; then aclocalinclude="$aclocalinclude -I $k" - if [ -f $k/gnome.m4 -a "$GNOME_INTERFACE_VERSION" = "1" ]; then + if [ -f $k/gnome.m4 -a "$GNOME_INTERFACE_VERSION" = "1.0" ]; then rm -f $DELETEFILES fi fi @@ -139,10 +139,8 @@ do test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 fi if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then - if test -z "$NO_LIBTOOLIZE" ; then - echo "Running libtoolize..." - libtoolize --force --copy - fi + echo "Running libtoolize..." + libtoolize --force --copy fi echo "Running aclocal $aclocalinclude ..." aclocal $aclocalinclude |