From: Gary V. Vaughan Date: Tue, 29 Oct 2013 04:08:49 +0000 (+1300) Subject: bootstrap: fix a quoting error. X-Git-Tag: v2.4.2.427~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=880a41f6f5118b731c910382319d958cd2189fd4;p=thirdparty%2Flibtool.git bootstrap: fix a quoting error. * gl/build-aux/bootstrap.in (func_require_buildreq_autoconf): Quote the extracted version number correctly so that it is displayed in verbose mode. Signed-off-by: Gary V. Vaughan --- diff --git a/bootstrap b/bootstrap index f238ca622..1b16d95ef 100755 --- a/bootstrap +++ b/bootstrap @@ -3456,7 +3456,7 @@ for tool in autoconf libtoolize autopoint; do '$tool' $_G_version http://www.gnu.org/s/'$b' " func_verbose \ - "auto-adding '\'$tool'-'$_G_version\'' to build requirements" + "auto-adding '\'$tool'-$_G_version'\'' to build requirements" } } diff --git a/gl/build-aux/bootstrap.in b/gl/build-aux/bootstrap.in index 649899ad2..e83835cde 100755 --- a/gl/build-aux/bootstrap.in +++ b/gl/build-aux/bootstrap.in @@ -1092,7 +1092,7 @@ for tool in autoconf libtoolize autopoint; do '$tool' $_G_version http://www.gnu.org/s/'$b' " func_verbose \ - "auto-adding '\'$tool'-'$_G_version\'' to build requirements" + "auto-adding '\'$tool'-$_G_version'\'' to build requirements" } }