We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a264f5b commit b22c8ecCopy full SHA for b22c8ec
configure
@@ -585,6 +585,7 @@ fi
585
BOOL_OPTIONS=""
586
VAL_OPTIONS=""
587
588
+opt option-checking 1 "complain about unrecognized options"
589
opt debug 0 "debug mode; disables optimization unless \`--enable-optimize\` given"
590
opt valgrind 0 "run tests with valgrind (memcheck by default)"
591
opt helgrind 0 "run tests with helgrind instead of memcheck"
@@ -674,8 +675,11 @@ then
674
675
fi
676
677
# Validate Options
-step_msg "validating $CFG_SELF args"
678
-validate_opt
+if [ -z "$CFG_DISABLE_OPTION_CHECKING" ]
679
+then
680
+ step_msg "validating $CFG_SELF args"
681
+ validate_opt
682
+fi
683
684
# Validate the release channel, and configure options
685
case "$CFG_RELEASE_CHANNEL" in
0 commit comments