[Pcsclite-cvs-commit] r276 - in trunk: CFlexPlugin MCardPlugin

Ludovic Rousseau rousseau at costa.debian.org
Tue Mar 28 15:31:19 CEST 2006


Author: rousseau
Date: 2006-03-28 13:31:19 +0000 (Tue, 28 Mar 2006)
New Revision: 276

Modified:
   trunk/CFlexPlugin/installBundle
   trunk/MCardPlugin/installBundle
Log:
use `cmd` instead of bash specific $(cmd)

Thanks to Iain MacDonnell for the patch


Modified: trunk/CFlexPlugin/installBundle
===================================================================
--- trunk/CFlexPlugin/installBundle	2006-03-28 13:28:31 UTC (rev 275)
+++ trunk/CFlexPlugin/installBundle	2006-03-28 13:31:19 UTC (rev 276)
@@ -7,7 +7,7 @@
 
 if [ x$DESTDIR = "x" ]
 then
-	DESTDIR=$(pkg-config libmusclecard --variable=muscledropdir)
+	DESTDIR=`pkg-config libmusclecard --variable=muscledropdir`
 	DESTDIR=${DESTDIR:-/usr/local/pcsc/services}
 fi
 

Modified: trunk/MCardPlugin/installBundle
===================================================================
--- trunk/MCardPlugin/installBundle	2006-03-28 13:28:31 UTC (rev 275)
+++ trunk/MCardPlugin/installBundle	2006-03-28 13:31:19 UTC (rev 276)
@@ -7,7 +7,7 @@
 
 if [ x$DESTDIR = "x" ]
 then
-	DESTDIR=$(pkg-config libmusclecard --variable=muscledropdir)
+	DESTDIR=`pkg-config libmusclecard --variable=muscledropdir`
 	DESTDIR=${DESTDIR:-/usr/local/pcsc/services}
 fi
 




More information about the Pcsclite-cvs-commit mailing list