Kaydet (Commit) 3526da14 authored tarafından Samuel Mehrbrodt's avatar Samuel Mehrbrodt

autogen.sh: Display arguments for configure without apostrophes

So one can easily c&p the list of arguments

Change-Id: I0555c58aa6aadc410a26309d6e51382eed390b2b
üst 05fd8cb8
...@@ -265,7 +265,7 @@ if (defined $ENV{NOCONFIGURE}) { ...@@ -265,7 +265,7 @@ if (defined $ENV{NOCONFIGURE}) {
push @args, "--srcdir=$src_path"; push @args, "--srcdir=$src_path";
push @args, "--enable-option-checking=$option_checking"; push @args, "--enable-option-checking=$option_checking";
print "Running ./configure with '" . join ("' '", @args), "'\n"; print "Running ./configure with '" . join (" ", @args), "'\n";
system ("./configure", @args) && die "Error running configure"; system ("./configure", @args) && die "Error running configure";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment