summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-08 11:56:09 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-08 11:56:09 +0000
commit79701be883a068b92d55fa4b5d1bf24d5063bf6e (patch)
tree4bd73d58b8fd174cfda08e90a00e2f2de7e98dd1
parent5815029bd2e16832d37f5f8f9c1307accfbdf058 (diff)
downloadmpv-79701be883a068b92d55fa4b5d1bf24d5063bf6e.tar.bz2
mpv-79701be883a068b92d55fa4b5d1bf24d5063bf6e.tar.xz
Fix wrong syntax in test example, noticed by Jason Holt, jholt google com.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29151 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index f01bf95d02..2e17243975 100755
--- a/configure
+++ b/configure
@@ -22,13 +22,14 @@
# If you want to add a new check for $feature, here is a simple skeleton:
#
# echocheck "$feature"
-# if "$_feature" = auto; then
+# if test "$_feature" = auto; then
# cat > $TMPC << EOF
# #include <feature.h>
# int main(void) { return 0; }
# EOF
# _feature=no
# cc_check && _feature=yes
+# fi
# if test "$_feature" = yes ; then
# def_feature='#define CONFIG_FEATURE 1'
# else