From: Jim Meyering Date: Sat, 4 Sep 2010 15:43:39 +0000 (+0200) Subject: avoid coreutils "make distcheck" failure X-Git-Tag: v0.1~3854 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=3389c116ca7f63bcad9f9000087cdae5774b1ec2;p=gnulib.git 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. --- diff --git a/ChangeLog b/ChangeLog index 0ef095c52..6616cbb7e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2010-09-04 Jim Meyering + + 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 gnulib-tool: Avoid error when run in a package without Makefile.am. diff --git a/tests/test-vc-list-files-cvs.sh b/tests/test-vc-list-files-cvs.sh index f9c0fcaf4..017b8d246 100755 --- 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 . */ : ${srcdir=.} -. "$srcdir/init.sh"; path_prepend_ $abs_aux_dir . +. "$srcdir/init.sh"; path_prepend_ "$abs_aux_dir" . tmpdir=vc-cvs repo=`pwd`/$tmpdir/repo diff --git a/tests/test-vc-list-files-git.sh b/tests/test-vc-list-files-git.sh index 47892a510..262d2ea3d 100755 --- 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 . */ : ${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