diff options
Diffstat (limited to 'tests/subdir5.test')
-rwxr-xr-x | tests/subdir5.test | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/subdir5.test b/tests/subdir5.test index c0c7548e9..ed8eb7564 100755 --- a/tests/subdir5.test +++ b/tests/subdir5.test @@ -21,7 +21,7 @@ . ./defs || Exit 1 -cat >> configure.in << 'END' +cat >> configure.ac << 'END' AC_OUTPUT END @@ -35,20 +35,20 @@ $MAKE # Now add new directories. -# First we add a new directory by modifying configure.in directly. -# We update configure.in *before* updating sub/Makefile.am; subdir8.test +# First we add a new directory by modifying configure.ac directly. +# We update configure.ac *before* updating sub/Makefile.am; subdir8.test # does it in the other way: it updates confiles.m4 (which is m4_included -# by configure.in there) after Makefile.am. +# by configure.ac there) after Makefile.am. # Modified configure dependencies must be newer than config.status. $sleep -sed <configure.in >configure.tmp -e '/^AC_OUTPUT$/i\ +sed <configure.ac >configure.tmp -e '/^AC_OUTPUT$/i\ AC_CONFIG_FILES([maude/Makefile])\ m4_include([confile.m4])\ ' # Last newline required by older OpenBSD sed. -mv -f configure.tmp configure.in +mv -f configure.tmp configure.ac -cat configure.in # For debugging. +cat configure.ac # For debugging. : > confile.m4 @@ -69,7 +69,7 @@ grep '^SUBDIRS = *maude *$' Makefile test -f maude/Makefile # Then we add a new directory by modifying a file included (through -# `m4_include') by configure.in. +# `m4_include') by configure.ac. mkdir maude2 # Modified configure dependencies must be newer than config.status. $sleep |