summaryrefslogtreecommitdiff
path: root/tools/genssl
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2016-11-08 09:28:29 +0000
committerPeter Powell <petpow@saberuk.com>2016-11-08 09:31:56 +0000
commit1d45a7264c01669a046e803d206dd3553fbc5c55 (patch)
tree6e0c570d976dc420158fd9f6fdeb0c2e6c675ffa /tools/genssl
parentb841e4bb855f43533601171fb405c74f04b4ea71 (diff)
Update build system for the removal of . from @INC.
Diffstat (limited to 'tools/genssl')
-rwxr-xr-xtools/genssl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genssl b/tools/genssl
index c88f9534f..b824f4ebe 100755
--- a/tools/genssl
+++ b/tools/genssl
@@ -36,7 +36,7 @@ use File::Temp();
sub prompt($$) {
my ($question, $default) = @_;
- return prompt_string(1, $question, $default) if eval 'use make::console; 1';
+ return prompt_string(1, $question, $default) if eval 'use FindBin;use lib $FindBin::RealDir;use make::console; 1';
say $question;
print "[$default] => ";
chomp(my $answer = <STDIN>);