changeset 29111:04c935239657

Fix wrong syntax in test example, noticed by Jason Holt, jholt google com.
author diego
date Wed, 08 Apr 2009 11:56:09 +0000
parents 102e7b8da1a2
children 66b3f5148570
files configure
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Mon Apr 06 14:06:53 2009 +0000
+++ b/configure	Wed Apr 08 11:56:09 2009 +0000
@@ -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