summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-05-01 10:17:19 +0200
committerJim Meyering <meyering@redhat.com>2008-05-01 10:17:19 +0200
commit55de2586a097dfe65d62303ec415c236a7637c52 (patch)
treeae4c777f0f8fb1ac846d409447ba8db19d33ebab
parent0e23601e98463c51915660a53aa51a8c956c3582 (diff)
downloadgnulib-55de2586a097dfe65d62303ec415c236a7637c52.tar.gz
vc-list-files: accommodate /bin/sh like the one from Solaris 10
* build-aux/vc-list-files: Use `...`, not $(...).
-rw-r--r--ChangeLog5
-rwxr-xr-xbuild-aux/vc-list-files4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b5cd8eac6..03e2df7405 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-05-01 Jim Meyering <meyering@redhat.com>
+
+ vc-list-files: accommodate /bin/sh like the one from Solaris 10
+ * build-aux/vc-list-files: Use `...`, not $(...).
+
2008-04-30 Jim Meyering <meyering@redhat.com>
add tests for vc-list-files
diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files
index 63b403a116..193c497dbb 100755
--- 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=2008-04-30.12
+scriptversion=2008-05-01.10
# Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -88,7 +88,7 @@ elif test -d CVS; then
sub(/CVS\/Entries/, "", f); \
print f $2; \
}}'\'' \
- $(find "$dir" -name Entries -print) /dev/null' $postprocess
+ `find "$dir" -name Entries -print` /dev/null' $postprocess
fi
else
echo "$0: Failed to determine type of version control used in `pwd`" 1>&2