diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-12-29 09:47:33 +0100 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-12-29 09:47:33 +0100 |
commit | 08db0c420204dd07ca96a6d2f9c892c5a608ac49 (patch) | |
tree | ed417d13ec1e50a539323105eef6448fa6b85a1a /t/depcomp8b.sh | |
parent | a31c991e5f4d58f236e26ab4d3197aa68d564110 (diff) | |
download | automake-08db0c420204dd07ca96a6d2f9c892c5a608ac49.tar.gz |
tests: better names for temporary configure.ac files
When editing a pre-existent 'configure.ac' file in a test script, name
the temporary file 'configure.tmp' rather than 'configure.int'; the
latter was a relict of the times when we used 'configure.in' as the
default name for the Autoconf input files throughout the testsuite.
* t/cond43.sh: Adjust.
* t/depcomp8a.sh: Likewise.
* t/depcomp8b.sh: Likewise.
* t/gettext.sh: Likewise.
* t/mmode.sh: Likewise.
* t/pr401.sh: Likewise.
* t/pr401b.sh: Likewise.
* t/pr401c.sh: Likewise.
* t/python11.sh: Likewise.
* t/cond42.sh: Likewise. Also, while at it, rename ...
(edit_configure_in): ... this function ...
(edit_configure_ac): ... like this.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/depcomp8b.sh')
-rwxr-xr-x | t/depcomp8b.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/depcomp8b.sh b/t/depcomp8b.sh index 6fed2155c..54834d641 100755 --- a/t/depcomp8b.sh +++ b/t/depcomp8b.sh @@ -56,8 +56,8 @@ DISTCHECK_CONFIGURE_FLAGS='--enable-dependency-tracking' $MAKE distcheck # Try again with subdir-objects option. -sed 's/#x //' configure.ac >configure.int -mv -f configure.int configure.ac +sed 's/#x //' configure.ac >configure.tmp +mv -f configure.tmp configure.ac echo AUTOMAKE_OPTIONS = subdir-objects >> Makefile.am $ACLOCAL |