]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
bootstrap: fix test-dollar sanity check failure.
authorGary V. Vaughan <gary@gnu.org>
Fri, 3 Jan 2014 05:20:40 +0000 (18:20 +1300)
committerGary V. Vaughan <gary@gnu.org>
Fri, 3 Jan 2014 05:25:53 +0000 (18:25 +1300)
* gl/build-aux/bootstrap.in (func_ensure_README): quote argument.
* bootstrap: Regenerate.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
bootstrap
gl/build-aux/bootstrap.in

index 44cd0cdcafe3beb55e7f3532453233c0e3d4fb5d..e102622a2ad59aa6726d1bf5d77183172e5f66f3 100755 (executable)
--- 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"
     }
 
index d596c847c69f3dc90356998de69e887bfc2dcd8d..848d344f205ce1ac41a835f43e715f3ecedd0919 100755 (executable)
@@ -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"
     }