diff options
author | Alexandre Duret-Lutz <adl@gnu.org> | 2003-06-20 20:38:58 +0000 |
---|---|---|
committer | Alexandre Duret-Lutz <adl@gnu.org> | 2003-06-20 20:38:58 +0000 |
commit | 97aee5d70df0abe4e71f951aeaef799ad091c2a5 (patch) | |
tree | 2ba22ef015b3b330a2b92979710cdcedaa35e8e8 /m4 | |
parent | 91837a7fa0a5596c3c61e8e63ff2845cdf37b0ec (diff) | |
download | automake-97aee5d70df0abe4e71f951aeaef799ad091c2a5.tar.gz |
* automake.in (handle_dist): Delete DIST_COMMON before redefining
it. Bug report from Akim Demaille.
(rewrite_inputs_into_dependencies): Make sure we always return
something, even when $add_srcdir is 0.
* tests/distcom4.test, tests/distcom5.test: New files.
* tests/Makefile.am (TESTS): Add distcom4.test and distcom5.test.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/Makefile.in b/m4/Makefile.in index c94314002..cc1342fac 100644 --- a/m4/Makefile.in +++ b/m4/Makefile.in @@ -34,7 +34,7 @@ POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : -DIST_COMMON = Makefile.in Makefile.am $(dist_m4data_DATA) +DIST_COMMON = $(dist_m4data_DATA) Makefile.am Makefile.in subdir = m4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__configure_deps = $(top_srcdir)/m4/init.m4 \ @@ -167,7 +167,7 @@ $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $( exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu m4/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu m4/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu m4/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status |