Revert "INSTALL: add information on option no-fuzz-test"
[openssl.git] / Configure
index 4fec746c4c477fe50fdbed2d4ab495e5e7112115..0a1b68a93b35879a6d7edf0136110a6671c2b613 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -342,7 +342,6 @@ my @disablables = (
     "filenames",
     "fuzz-libfuzzer",
     "fuzz-afl",
-    "fuzz-test",
     "gost",
     "heartbeats",
     "hw(-.+)?",
@@ -788,7 +787,9 @@ while (@tocheckfor) {
     @tocheckfor = (keys %new_tocheckfor);
 }
 
+our $die = sub { die @_; };
 if ($target eq "TABLE") {
+    local $die = sub { warn @_; };
     foreach (sort keys %table) {
        print_table_entry($_, "TABLE");
     }
@@ -803,6 +804,7 @@ if ($target eq "LIST") {
 }
 
 if ($target eq "HASH") {
+    local $die = sub { warn @_; };
     print "%table = (\n";
     foreach (sort keys %table) {
        print_table_entry($_, "HASH");