mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
Use backticks to execute xml2-config/xslt-config, which is more portable.
git-svn-id: https://svn.xiph.org/trunk/ezstream@12574 0101bb08-14d6-0310-b084-bc0e0c8e3800
This commit is contained in:
parent
43d8282bb3
commit
3418a75a66
@ -17,8 +17,8 @@ fi
|
|||||||
if ! test -x "$XMLCONFIG"; then
|
if ! test -x "$XMLCONFIG"; then
|
||||||
AC_MSG_ERROR([$XMLCONFIG cannot be executed])
|
AC_MSG_ERROR([$XMLCONFIG cannot be executed])
|
||||||
fi
|
fi
|
||||||
XML_LIBS="$($XMLCONFIG --libs)"
|
XML_LIBS="`$XMLCONFIG --libs`"
|
||||||
XML_CFLAGS="$($XMLCONFIG --cflags)"
|
XML_CFLAGS="`$XMLCONFIG --cflags`"
|
||||||
ac_xml_save_LIBS="$LIBS"
|
ac_xml_save_LIBS="$LIBS"
|
||||||
ac_xml_save_CFLAGS="$CFLAGS"
|
ac_xml_save_CFLAGS="$CFLAGS"
|
||||||
LIBS="$XML_LIBS $LIBS"
|
LIBS="$XML_LIBS $LIBS"
|
||||||
@ -46,8 +46,8 @@ fi
|
|||||||
if ! test -x "$XSLTCONFIG"; then
|
if ! test -x "$XSLTCONFIG"; then
|
||||||
AC_MSG_ERROR([$XSLTCONFIG cannot be executed])
|
AC_MSG_ERROR([$XSLTCONFIG cannot be executed])
|
||||||
fi
|
fi
|
||||||
XSLT_LIBS="$($XSLTCONFIG --libs)"
|
XSLT_LIBS="`$XSLTCONFIG --libs`"
|
||||||
XSLT_CFLAGS="$($XSLTCONFIG --cflags)"
|
XSLT_CFLAGS="`$XSLTCONFIG --cflags`"
|
||||||
ac_xslt_save_LIBS="$LIBS"
|
ac_xslt_save_LIBS="$LIBS"
|
||||||
ac_xslt_save_CFLAGS="$CFLAGS"
|
ac_xslt_save_CFLAGS="$CFLAGS"
|
||||||
LIBS="$XSLT_LIBS $LIBS"
|
LIBS="$XSLT_LIBS $LIBS"
|
||||||
|
Loading…
Reference in New Issue
Block a user