cygwin compatibility.
* tests/yacc6.test (AC_CONFIG_AUX_DIR): Likewise.
-2004-05-21 Eric Blake <ebb9@byu.net> (tiny change)
+2004-05-21 Eric Blake <ebb9@byu.net> (tiny changes)
+
+ * tests/txinfo22.test (AC_CONFIG_AUX_DIR): Use aux1, not aux, for
+ cygwin compatibility.
+ * tests/yacc6.test (AC_CONFIG_AUX_DIR): Likewise.
* tests/conflnk3.test: Isolate checking for working `test -e' into
a subshell, to skip this test on broken /bin/sh of solaris.
cat > configure.in << 'END'
AC_INIT([txinfo22], [1.0])
-AC_CONFIG_AUX_DIR(aux)
+AC_CONFIG_AUX_DIR([aux1])
AM_INIT_AUTOMAKE
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
@bye
END
-mkdir aux
+mkdir aux1
mkdir tex
cp $testsrcdir/../lib/texinfo.tex tex
$AUTOCONF
test ! -f texinfo.tex
-test ! -f aux/texinfo.tex
+test ! -f aux1/texinfo.tex
test -f tex/texinfo.tex
./configure
cat > configure.in << 'END'
AC_INIT([yacc6], [1.0])
-AC_CONFIG_AUX_DIR([aux])
+AC_CONFIG_AUX_DIR([aux1])
AM_INIT_AUTOMAKE
AC_CONFIG_FILES([Makefile])
AC_PROG_CC
test `ls -1t sub/main.$(OBJEXT) z | sed 1q` = sub/main.$(OBJEXT)
END
-mkdir aux sub
+mkdir aux1 sub
cat > sub/Makefile.am << 'END'
bin_PROGRAMS = foo bar
$ACLOCAL
$AUTOCONF
$AUTOMAKE -a
-test -f aux/ylwrap
+test -f aux1/ylwrap
test ! -f ylwrap
test ! -f sub/ylwrap
-$FGREP '(top_srcdir)/aux/ylwrap' sub/Makefile.in
+$FGREP '(top_srcdir)/aux1/ylwrap' sub/Makefile.in
./configure
$MAKE
grep '#.*line.*foo.y' sub/foo.c