From 2d5e2b47151d32fdeb9c14d908dc1a4c68d37962 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 29 Apr 1997 05:44:07 +0000 Subject: [PATCH] fix in BUILT_SOURCES --- ChangeLog | 3 +++ automake.in | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d0e24b3a9..c48f83ad2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Mon Apr 28 01:18:05 1997 Tom Tromey + * 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 diff --git a/automake.in b/automake.in index a19b38535..4419aa112 100755 --- a/automake.in +++ b/automake.in @@ -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=" -- 2.47.3