summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Wesarg <bert.wesarg@googlemail.com>2009-11-24 23:51:28 +0100
committerAndreas Gruenbacher <agruen@suse.de>2009-12-28 17:54:56 +0100
commitaa50fe4ff49b55e04bed9421b23748152c46911f (patch)
treeb57b66a3e884e4d58c74bfcde3f54d190c4bc3bd
parent9336e93bdaa73e5c96592d5d7faedc9f7bdec76a (diff)
downloadpatch-aa50fe4ff49b55e04bed9421b23748152c46911f.tar.gz
* configure.ac: It looks like the . command does not pass the
arguments to the update-version.sh script [on some platforms]. Invoke with sh instead.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9f5b893..78a406f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -31,6 +31,12 @@
* tests/filename-choice: New test case.
* Makefile.in (TESTS): Add test case.
+2009-11-24 Bert Wesarg <bert.wesarg@googlemail.com>
+
+ * configure.ac: It looks like the . command does not pass the
+ arguments to the update-version.sh script [on some platforms]. Invoke
+ with sh instead.
+
2009-11-14 Andreas Gruenbacher <agruen@suse.de>
* update-version.sh: Platform compatibility fixes.
diff --git a/configure.ac b/configure.ac
index b661e48..db4f750 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,7 +21,7 @@
AC_PREREQ(2.57)
define(AC_PACKAGE_VERSION, m4_normalize(esyscmd(
[
- . ./update-version.sh VERSION
+ sh ./update-version.sh VERSION
cat VERSION
])))
AC_INIT(patch, AC_PACKAGE_VERSION, bug-patch@gnu.org)