]> sourceware.org Git - automake.git/commitdiff
fix in BUILT_SOURCES
authorTom Tromey <tromey@redhat.com>
Tue, 29 Apr 1997 05:44:04 +0000 (05:44 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 29 Apr 1997 05:44:04 +0000 (05:44 +0000)
ChangeLog
automake.in

index d0e24b3a96d1622f0841bbf3e13517776abe5cb6..c48f83ad2222cf8ed1b62b7700e314497a27c661 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Mon Apr 28 01:18:05 1997  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (handle_configure): Makefile only depends on
+       BUILT_SOURCES when generating dependencies.
+
        * Released 1.1o.
 
 Sun Apr 27 23:58:20 1997  Tom Tromey  <tromey@cygnus.com>
index a19b3853512daa5ec5f0597e3ffa34dd8711a8f9..4419aa11263ffd15ee9dc43c0425adedbd110853 100755 (executable)
@@ -2881,7 +2881,13 @@ sub handle_configure
                      # see comment above.
                      . ': '
                      . $infile . ' '
-                     . '$(top_builddir)/config.status $(BUILT_SOURCES)'
+                     . '$(top_builddir)/config.status'
+                     # NOTE: Makefile only depends on BUILT_SOURCES
+                     # when dependencies are being computed.  This is
+                     # a workaround for an obscure bug with
+                     # AC_LINK_FILES.  Anyway, when dependencies are
+                     # turned off, this shouldn't matter.
+                     . ($use_dependencies ? ' $(BUILT_SOURCES)' : '')
                      . "\n"
                      . "\tcd \$(top_builddir) \\\n"
                      . "\t  && CONFIG_FILES="
This page took 0.050715 seconds and 5 git commands to generate.