+Sat Dec 7 11:34:39 1996 Tom Tromey <tromey@cygnus.com>
+
+ * automake.in (am_install_var): Quote $ in regexp substitution.
+ From Ulrich Drepper.
+
Fri Dec 6 18:54:10 1996 Tom Tromey <tromey@cygnus.com>
* automake.in (handle_configure): Require actual input files, not
.SUFFIXES:
.SUFFIXES: .texi .texinfo .info .dvi
-$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in
- cd $(top_srcdir) && automake --gnits Makefile
-
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
- cd $(top_builddir) \
- && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
-
$(srcdir)/aclocal.m4: configure.in
cd $(srcdir) && aclocal
+$(srcdir)/Makefile.in: Makefile.am configure.in
+ cd $(srcdir) && automake --gnits Makefile
+
+# For an explanation of the following Makefile rules, see node
+# `Automatic Remaking' in GNU Autoconf documentation.
+Makefile: $(srcdir)/Makefile.in config.status $(BUILT_SOURCES)
+ CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
config.status: configure
$(SHELL) ./config.status --recheck
$(srcdir)/configure: configure.in $(ACLOCAL) $(CONFIGURE_DEPENDENCIES)
automake.dvi: automake.texi version.texi
-DVIPS = dvips
-
.texi.info:
cd $(srcdir) \
&& $(MAKEINFO) `echo $< | sed 's,.*/,,'`
.texinfo.dvi:
TEXINPUTS=$(srcdir):$$TEXINPUTS $(TEXI2DVI) $<
-.dvi.ps:
- $(DVIPS) $< -o $@
install-info-am: $(INFO_DEPS)
$(NORMAL_INSTALL)
. "\t"
. 'cd $(top_builddir) && CONFIG_FILES='
. ($relative_dir eq '.' ? '' : '$(subdir)/')
- . '$@' . (length (@inputs) > 1
+ . '$@' . (length (@rewritten_inputs) > 1
? (':' . join (':', @rewritten_inputs))
: '')
. ' CONFIG_HEADERS= ./config.status'
{
# Note that we explicitly set the mode, to avoid
# lossage if the program name isn't what we expect.
- $more_xform = 's/\@LIBTOOL\@/$(LIBTOOL) --mode=install/;';
+ $more_xform = 's/\@LIBTOOL\@/\$(LIBTOOL) --mode=install/;';
}
else
{
+Sat Dec 7 12:52:45 1996 Tom Tromey <tromey@cygnus.com>
+
+ * output2.test: New file.
+
Fri Dec 6 19:00:31 1996 Tom Tromey <tromey@cygnus.com>
* output.test: New file.
comment2.test vpath.test symlink.test discover.test acinclude.test req.test \
acsilent.test distdir.test lex2.test libobj4.test libobj5.test version.test \
ranlib.test confvar.test confvar2.test stdlib.test cxxo.test colon2.test \
-colon3.test remake.test output.test
+colon3.test remake.test output.test output2.test
EXTRA_DIST = defs $(TESTS)
--- /dev/null
+#! /bin/sh
+
+# Another AC_OUTPUT test. From report by Ulrich Drepper.
+
+. $srcdir/defs || exit 1
+
+cat > configure.in << 'END'
+PACKAGE=nonesuch
+VERSION=nonesuch
+AC_ARG_PROGRAM
+AC_PROG_INSTALL
+AC_OUTPUT(Makefile intl/intlh.inst po/Makefile.in misc/gettextize)
+END
+
+: > Makefile.am
+
+mkdir intl po misc
+: > intl/intlh.inst.in
+: > po/Makefile.in.am
+: > misc/gettextize.in
+
+$AUTOMAKE || exit 1
+
+grep '^gettextize' Makefile.in && exit 1
+exit 0