From: Gary V. Vaughan Date: Fri, 3 Jan 2014 05:20:40 +0000 (+1300) Subject: bootstrap: fix test-dollar sanity check failure. X-Git-Tag: v2.4.3~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5b1d8fd0a05f2aec7f67082c9343a9a592910a2c;p=thirdparty%2Flibtool.git bootstrap: fix test-dollar sanity check failure. * gl/build-aux/bootstrap.in (func_ensure_README): quote argument. * bootstrap: Regenerate. Signed-off-by: Gary V. Vaughan --- diff --git a/bootstrap b/bootstrap index 44cd0cdca..e102622a2 100755 --- a/bootstrap +++ b/bootstrap @@ -3029,17 +3029,17 @@ EOT # Without AM_INIT_AUTOMAKE([foreign]), automake will not run to # completion with no README file, even though README.md or README.txt # is often preferable. -func_ensure_changelog () +func_ensure_README () { $debug_cmd test -f README || { _G_README= for _G_readme in README.txt README.md README.rst; do - test -f $_G_readme && break + test -f "$_G_readme" && break done - test -f $_G_readme && $LN_S $_G_readme README + test -f "$_G_readme" && $LN_S $_G_readme README func_verbose "$LN_S $_G_readme README" } diff --git a/gl/build-aux/bootstrap.in b/gl/build-aux/bootstrap.in index d596c847c..848d344f2 100755 --- a/gl/build-aux/bootstrap.in +++ b/gl/build-aux/bootstrap.in @@ -695,17 +695,17 @@ EOT # Without AM_INIT_AUTOMAKE([foreign]), automake will not run to # completion with no README file, even though README.md or README.txt # is often preferable. -func_ensure_changelog () +func_ensure_README () { $debug_cmd test -f README || { _G_README= for _G_readme in README.txt README.md README.rst; do - test -f $_G_readme && break + test -f "$_G_readme" && break done - test -f $_G_readme && $LN_S $_G_readme README + test -f "$_G_readme" && $LN_S $_G_readme README func_verbose "$LN_S $_G_readme README" }