summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary V. Vaughan <gary@gnu.org>2014-12-11 22:58:08 +0000
committerGary V. Vaughan <gary@gnu.org>2014-12-11 23:03:37 +0000
commit72293c99520a7dd77d08241ae697409d052e38b4 (patch)
treefe221781ca399cf098488f6bfcf8db3c0472aa49
parent440fee60c991e19e0ce66f98c5ad06d5607c766f (diff)
downloadlibtool-72293c99520a7dd77d08241ae697409d052e38b4.tar.gz
bootstrap: sync with upstream.
* gl/build-aux/extract-trace (func_find_tool): Quote a bare variable expansion in a test argument. * bootstrap: Regenerate. Signed-off-by: Gary V. Vaughan <gary@gnu.org>
-rwxr-xr-xbootstrap2
-rwxr-xr-xgl/build-aux/extract-trace2
2 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap b/bootstrap
index a6ffd541..94e3385b 100755
--- a/bootstrap
+++ b/bootstrap
@@ -2312,7 +2312,7 @@ func_find_tool ()
for _G_dir in $PATH; do
IFS=$_G_find_tool_save_IFS
_G_progpath=$_G_dir/$_G_prog
- test -r $_G_progpath && {
+ test -r "$_G_progpath" && {
_G_curver=`func_tool_version_number $_G_progpath`
case $_G_bestver,$_G_curver in
,)
diff --git a/gl/build-aux/extract-trace b/gl/build-aux/extract-trace
index 14b0f0a0..a3d0bc4e 100755
--- a/gl/build-aux/extract-trace
+++ b/gl/build-aux/extract-trace
@@ -169,7 +169,7 @@ func_find_tool ()
for _G_dir in $PATH; do
IFS=$_G_find_tool_save_IFS
_G_progpath=$_G_dir/$_G_prog
- test -r $_G_progpath && {
+ test -r "$_G_progpath" && {
_G_curver=`func_tool_version_number $_G_progpath`
case $_G_bestver,$_G_curver in
,)