# HG changeset patch # User Eric Blake # Date 1240665312 21600 # Node ID 86c375a26d4db413fee484bee92dd5dc2eea7db4 # Parent 3b896d8318fe22c6fac0a9682af9379a95ebdcac vc-list-files: fix shell quoting error * build-aux/vc-list-files: Protect against $ in $dir. Normalize timestamp. Signed-off-by: Eric Blake diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-04-25 Eric Blake + + vc-list-files: fix shell quoting error + * build-aux/vc-list-files: Protect against $ in $dir. Normalize + timestamp. + 2009-04-25 Jim Meyering vc-list-files: restore lost functionality with subdir argument diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files --- a/build-aux/vc-list-files +++ b/build-aux/vc-list-files @@ -2,7 +2,7 @@ # List version-controlled file names. # Print a version string. -scriptversion=2009-04-25.10 +scriptversion=2009-04-25.13; # UTC # Copyright (C) 2006-2009 Free Software Foundation, Inc. @@ -78,7 +78,7 @@ # else (often into a submodule), in which case the content does not # belong to this package. eval exec git ls-tree -r 'HEAD:"$dir"' \ - \| sed -n '"s!^100[^ ]*.!'"$dir"'!p"' $postprocess + \| sed -n '"s!^100[^ ]*.!$dir!p"' $postprocess elif test -d .hg; then eval exec hg locate '"$dir/*"' $postprocess elif test -d .bzr; then @@ -109,5 +109,6 @@ # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: