summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-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