We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a3bbb commit 22b608cCopy full SHA for 22b608c
build/build.pl
@@ -232,8 +232,11 @@ sub verify_hostperl {
232
if ($perl_mtime>$our_mtime)
233
{ say STDERR "# config.sh is newer than emperl_config.sh" }
234
else {
235
- say STDERR "# config.sh is OLDER than emperl_config.sh, forcing a reconfig";
236
- $needs_reconfig=1 }
+ say STDERR "# config.sh is OLDER than emperl_config.sh";
+ exit 1 if prompt("Did you remember to run '. emperl_config.sh'? [yN]","n")!~/^\s*y/i;
237
+ say STDERR "# ok, forcing a reconfig";
238
+ $needs_reconfig=1;
239
+ }
240
}
241
242
if ($needs_reconfig) {
0 commit comments