[Pcsclite-cvs-commit] r7089 - trunk/Drivers/ccid

ludovic.rousseau at free.fr ludovic.rousseau at free.fr
Fri Feb 6 13:11:02 UTC 2015


Author: rousseau
Date: 2015-02-06 13:11:02 +0000 (Fri, 06 Feb 2015)
New Revision: 7089

Modified:
   trunk/Drivers/ccid/bootstrap
Log:
Use glibtoolize. if found

brew(1) on Mac OS X provides glibtoolize instead of libtoolize.


Modified: trunk/Drivers/ccid/bootstrap
===================================================================
--- trunk/Drivers/ccid/bootstrap	2015-01-31 17:42:18 UTC (rev 7088)
+++ trunk/Drivers/ccid/bootstrap	2015-02-06 13:11:02 UTC (rev 7089)
@@ -1,11 +1,18 @@
-#! /bin/sh
+#! /bin/bash
 
 # $Id:$
 
 set -x
 
+LIBTOOLIZE=libtoolize
+# From brew(1) on Mac OS X
+# ==> Caveats
+#  In order to prevent conflicts with Apple's own libtool we have prepended a "g"
+#  so, you have instead: glibtool and glibtoolize.
+type glibtoolize && LIBTOOLIZE=glibtoolize
+
 aclocal -I m4
-libtoolize --copy --force --automake
+$LIBTOOLIZE --copy --force --automake
 autoheader --force
 autoconf --force
 automake --add-missing --copy --force --foreign




More information about the Pcsclite-cvs-commit mailing list