summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2015-09-22 11:18:57 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2015-09-22 11:22:46 +0200
commit3526da14b7c49adff202f32c15948fed8b9915ea (patch)
tree6ea3734190e492fe931412d676bbbe03bf6fb441 /autogen.sh
parenttdf#93970 Outline indents should not affect paragraph indents (diff)
downloadcore-3526da14b7c49adff202f32c15948fed8b9915ea.tar.gz
core-3526da14b7c49adff202f32c15948fed8b9915ea.zip
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-xautogen.sh2
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";
}