[Fakeroot-commits] [SCM] fakeroot branch, upstream, updated. 7688f1b398a9e71f239b1a7a6142a2d2d9f2beeb
Clint Adams
clint at debian.org
Tue Aug 23 13:12:55 UTC 2011
The following commit has been merged in the upstream branch:
commit 83408dbcd6b0bb692e1b6df1ee8a7e5d8eb66dfd
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