diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-09-22 11:18:57 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-09-22 11:22:46 +0200 |
commit | 3526da14b7c49adff202f32c15948fed8b9915ea (patch) | |
tree | 6ea3734190e492fe931412d676bbbe03bf6fb441 /autogen.sh | |
parent | 05fd8cb848ecba425124d61cd76e2f9418d5378c (diff) |
autogen.sh: Display arguments for configure without apostrophes
So one can easily c&p the list of arguments
Change-Id: I0555c58aa6aadc410a26309d6e51382eed390b2b
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index ab9c94d3f165..f208f35f12b5 100755 --- a/autogen.sh +++ b/autogen.sh @@ -265,7 +265,7 @@ if (defined $ENV{NOCONFIGURE}) { push @args, "--srcdir=$src_path"; 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"; } |