Author: diego Date: Mon Dec 14 00:48:20 2009 New Revision: 30010 Log: Avoid '&>' bashism for redirecting both stdout and stderr.
Modified: trunk/DOCS/xml/configure Modified: trunk/DOCS/xml/configure ============================================================================== --- trunk/DOCS/xml/configure Mon Dec 14 00:22:55 2009 (r30009) +++ trunk/DOCS/xml/configure Mon Dec 14 00:48:20 2009 (r30010) @@ -181,7 +181,7 @@ echo "Looking for a valid XSLT processor # Also checks for Jade/OpenJade. #FIXME: Add support for the xalan/xalan2 XSLT processors. -if xsltproc --version &> /dev/null +if xsltproc --version > /dev/null 2>&1 then if test -z "$_fake_chunk_xsl" then _______________________________________________ MPlayer-DOCS mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/mplayer-docs
