summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRoman Shaposhnik <roman@shaposhnik.org>2004-07-23 20:08:27 +0000
committerRoman Shaposhnik <roman@shaposhnik.org>2004-07-23 20:08:27 +0000
commite2a3cd590aebdce035757d28e60b1b56e563fc88 (patch)
tree9ec1123d966e0c96cbad999c841d6eb73326c8d1 /configure
parentdd1368dbf586e162f021be9f30bf2785bc5aae11 (diff)
* cosmetics -- force "command not found" not to be printed
Originally committed as revision 3335 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 3fe6099407..47d95c8dc4 100755
--- a/configure
+++ b/configure
@@ -889,7 +889,7 @@ EOF
freetype2=no
if test "x$targetos" != "xBeOS" && test "$os2" != "yes"; then
- if freetype-config --version >/dev/null 2>&1 ; then
+ if (freetype-config --version) >/dev/null 2>&1 ; then
if $cc -o $TMPE $TMPC `freetype-config --cflags` `freetype-config --libs` > /dev/null 2>&1 ; then
freetype2=yes
fi
@@ -907,7 +907,7 @@ EOF
sdl_too_old=no
sdl=no
-if sdl-config --version >/dev/null 2>&1 ; then
+if (sdl-config --version) >/dev/null 2>&1 ; then
if $cc -o $TMPE `sdl-config --cflags` $TMPC `sdl-config --libs` > /dev/null 2>&1 ; then
_sdlversion=`sdl-config --version | sed 's/[^0-9]//g'`
if test "$_sdlversion" -lt 121 ; then
@@ -922,7 +922,7 @@ fi
# texi2html probe
texi2html=no
-if texi2html -version >/dev/null 2>&1; then
+if (texi2html -version) >/dev/null 2>&1; then
texi2html=yes
fi