diff options
Diffstat (limited to 't/pr401b.sh')
-rwxr-xr-x | t/pr401b.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/t/pr401b.sh b/t/pr401b.sh index 61935879a..ad88b37e1 100755 --- a/t/pr401b.sh +++ b/t/pr401b.sh @@ -94,8 +94,8 @@ $MAKE distcheck # Invocation of AC_CONFIG_LIBOBJ_DIR may be necessary for reasons # unrelated to Automake or Makefile.am layout. -sed 's/#: //' configure.ac >configure.int -mv -f configure.int configure.ac +sed 's/#: //' configure.ac >configure.tmp +mv -f configure.tmp configure.ac $ACLOCAL $AUTOCONF @@ -118,8 +118,8 @@ mv -f src/t src/Makefile.am ## Test using LTLIBOBJS from a sibling directory. ## ## ---------------------------------------------- ## -sed 's/#x //; s/lib\/Makefile //' configure.ac >configure.int -mv -f configure.int configure.ac +sed 's/#x //; s/lib\/Makefile //' configure.ac >configure.tmp +mv -f configure.tmp configure.ac cat >Makefile.am <<'EOF' SUBDIRS = src @@ -155,8 +155,8 @@ $MAKE distclean ## Test using LTLIBOBJS from parent directory. ## ## ------------------------------------------- ## -sed 's/^.*src\/Makefile.*$//' configure.ac >configure.int -mv -f configure.int configure.ac +sed 's/^.*src\/Makefile.*$//' configure.ac >configure.tmp +mv -f configure.tmp configure.ac cat >Makefile.am <<'EOF' AUTOMAKE_OPTIONS = subdir-objects |