summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2010-05-04 18:58:13 +0200
committerAndreas Gruenbacher <agruen@suse.de>2010-05-04 18:58:13 +0200
commit80cfee88e698aec70c2f440cadd86c1843b63ef6 (patch)
tree373b3c8fd46f18b0c4963b91b7d753aa0b218498
parent4ded52f91253482ab4ce29a538aa7a33f3aab596 (diff)
downloadpatch-80cfee88e698aec70c2f440cadd86c1843b63ef6.tar.gz
Remove $(TEST_SHELL) and use $(SHELL) instead.
* configure.ac, tests/Makefile: Remove $(TEST_SHELL) and use $(SHELL) instead.
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac1
-rw-r--r--tests/Makefile.am2
3 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c98e995..808c8c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,9 @@
2009-05-04 Andreas Gruenbacher <agruen@suse.de>
+ * configure.ac, tests/Makefile: Remove $(TEST_SHELL) and use $(SHELL)
+ instead.
+
* src/version.c: Put the Free Software Foundation copyright first.
* tests/read-only-files: Skip when run as superuser: even files
without write permissions would be writable.
diff --git a/configure.ac b/configure.ac
index bca48a5..d59dca2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -56,7 +56,6 @@ PATCH_FUNC_MKDIR_TAKES_ONE_ARG
AC_PATH_PROG([ED], [ed], [ed])
AC_DEFINE_UNQUOTED([EDITOR_PROGRAM], ["$ED"], [Name of editor program.])
-AC_PATH_PROG(TEST_SHELL, [bash sh])
AC_CONFIG_FILES([
Makefile
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 80684aa..fbade22 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -55,4 +55,4 @@ EXTRA_DIST = \
TESTS_ENVIRONMENT = \
abs_top_builddir=$(abs_top_builddir); \
export abs_top_builddir; \
- $(TEST_SHELL)
+ $(SHELL)