[xiph-commits] r12574 - trunk/ezstream/m4

moritz at svn.xiph.org moritz at svn.xiph.org
Tue Feb 27 06:41:53 PST 2007


Author: moritz
Date: 2007-02-27 06:41:51 -0800 (Tue, 27 Feb 2007)
New Revision: 12574

Modified:
   trunk/ezstream/m4/xiph_xml2.m4
Log:
Use backticks to execute xml2-config/xslt-config, which is more portable.


Modified: trunk/ezstream/m4/xiph_xml2.m4
===================================================================
--- trunk/ezstream/m4/xiph_xml2.m4	2007-02-27 12:46:56 UTC (rev 12573)
+++ trunk/ezstream/m4/xiph_xml2.m4	2007-02-27 14:41:51 UTC (rev 12574)
@@ -17,8 +17,8 @@
 if ! test -x "$XMLCONFIG"; then
     AC_MSG_ERROR([$XMLCONFIG cannot be executed])
 fi
-XML_LIBS="$($XMLCONFIG --libs)"
-XML_CFLAGS="$($XMLCONFIG --cflags)"
+XML_LIBS="`$XMLCONFIG --libs`"
+XML_CFLAGS="`$XMLCONFIG --cflags`"
 ac_xml_save_LIBS="$LIBS"
 ac_xml_save_CFLAGS="$CFLAGS"
 LIBS="$XML_LIBS $LIBS"
@@ -46,8 +46,8 @@
 if ! test -x "$XSLTCONFIG"; then
     AC_MSG_ERROR([$XSLTCONFIG cannot be executed])
 fi
-XSLT_LIBS="$($XSLTCONFIG --libs)"
-XSLT_CFLAGS="$($XSLTCONFIG --cflags)"
+XSLT_LIBS="`$XSLTCONFIG --libs`"
+XSLT_CFLAGS="`$XSLTCONFIG --cflags`"
 ac_xslt_save_LIBS="$LIBS"
 ac_xslt_save_CFLAGS="$CFLAGS"
 LIBS="$XSLT_LIBS $LIBS"



More information about the commits mailing list