[Fakeroot-commits] [SCM] fakeroot branch, master, updated. debian/1.14.3-200-gb232f8a

Kyle J. McKay mackyle at gmail.com
Tue Aug 23 13:03:41 UTC 2011


The following commit has been merged in the master branch:
commit bf327fc3d538a61be1f87bdef65f6bb6613ec003
Author: Kyle J. McKay <mackyle at gmail.com>
Date:   Thu May 26 03:41:56 2011 -0700

    Use glibtoolize on Darwin systems

diff --git a/bootstrap b/bootstrap
index 128ba42..b8064d1 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1,9 +1,19 @@
 #! /bin/sh
 
+LIBTOOLIZE=libtoolize
+
+SYSNAME="`uname -s 2>/dev/null`"
+
+case x"$SYSNAME" in
+  x"Darwin")
+    LIBTOOLIZE=glibtoolize
+    ;;
+esac
+
 test -d build-aux || mkdir build-aux
 
 # autoreconf seems to be missing the fact that libtool is used if
 # the macros are not defined first.  So help it.
-test -f ltmain.sh || libtoolize --install --force
+test -f ltmain.sh || $LIBTOOLIZE --install --force
 
 autoreconf --force --verbose --install

-- 
fakeroot



More information about the Fakeroot-commits mailing list