From 88bfcabe027216022df7b6f410f0dd862a92128d Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Tue, 24 Feb 2015 00:07:33 +0000 Subject: Create installation directories with make install not configure. This fixes system-wide installations requiring root in order to create directories. --- make/console.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'make/console.pm') diff --git a/make/console.pm b/make/console.pm index 9be5ef47c..045df8a70 100644 --- a/make/console.pm +++ b/make/console.pm @@ -80,13 +80,13 @@ sub prompt_bool($$$) { return $answer =~ /y/i; } -sub prompt_dir($$$) { - my ($interactive, $question, $default) = @_; +sub prompt_dir($$$;$) { + my ($interactive, $question, $default, $create_now) = @_; my ($answer, $create); do { $answer = rel2abs(prompt_string($interactive, $question, $default)); $create = prompt_bool($interactive && !-d $answer, "$answer does not exist. Create it?", 'y'); - if ($create) { + if ($create && $create_now) { my $mkpath = eval { mkpath($answer, 0, 0750); return 1; -- cgit v1.2.3