changeset 13633:016a2b7d7d27

avoid coreutils "make distcheck" failure Coreutils tests with an absolute build directory name that contains a space. Not quoting this directory name caused a failure. * tests/test-vc-list-files-git.sh: Quote PATH dir name. * tests/test-vc-list-files-cvs.sh: Likewise.
author Jim Meyering <meyering@redhat.com>
date Sat, 04 Sep 2010 17:43:39 +0200
parents 09362ffa0085
children 38f90e1a26c2
files ChangeLog tests/test-vc-list-files-cvs.sh tests/test-vc-list-files-git.sh
diffstat 3 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2010-09-04  Jim Meyering  <meyering@redhat.com>
+
+	avoid coreutils "make distcheck" failure
+	Coreutils tests with an absolute build directory name that contains
+	a space.  Not quoting this directory name caused a failure.
+	* tests/test-vc-list-files-git.sh: Quote PATH dir name.
+	* tests/test-vc-list-files-cvs.sh: Likewise.
+
 2010-09-04  Bruno Haible  <bruno@clisp.org>
 
 	gnulib-tool: Avoid error when run in a package without Makefile.am.
--- a/tests/test-vc-list-files-cvs.sh
+++ b/tests/test-vc-list-files-cvs.sh
@@ -17,7 +17,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 : ${srcdir=.}
-. "$srcdir/init.sh"; path_prepend_ $abs_aux_dir .
+. "$srcdir/init.sh"; path_prepend_ "$abs_aux_dir" .
 
 tmpdir=vc-cvs
 repo=`pwd`/$tmpdir/repo
--- a/tests/test-vc-list-files-git.sh
+++ b/tests/test-vc-list-files-git.sh
@@ -17,7 +17,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 : ${srcdir=.}
-. "$srcdir/init.sh"; path_prepend_ $abs_aux_dir .
+. "$srcdir/init.sh"; path_prepend_ "$abs_aux_dir" .
 
 tmpdir=vc-git-$$
 GIT_DIR= GIT_WORK_TREE=; unset GIT_DIR GIT_WORK_TREE