]> sourceware.org Git - automake.git/commitdiff
Bug fix
authorTom Tromey <tromey@redhat.com>
Thu, 12 Sep 1996 21:06:33 +0000 (21:06 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 12 Sep 1996 21:06:33 +0000 (21:06 +0000)
ChangeLog
automake.in
tests/ChangeLog
tests/Makefile.am
tests/Makefile.in
tests/implicit.test [new file with mode: 0755]

index 6177f938888792f788b90f9d5d1fb98ebee31a05..05cb592c1a84af1e5425848327ab4331fc40636c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Sep 12 15:03:19 1996  Tom Tromey  <tromey@creche.cygnus.com>
+
+       * automake.in (handle_source_transform): Removed extraneous
+       space.  Test implicit.test.
+
 Wed Sep 11 11:54:44 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
        * clean.am (distclean-generic): Remove CONFIG_CLEAN_FILES here,
index e0407ec7d4142699bc5d771de76fa82f1709292f..afb9652bd4705f7fd08e4f7109632fe3b4110c97 100755 (executable)
@@ -792,7 +792,7 @@ sub handle_source_transform
            &define_variable ($one_file . "_SOURCES", $unxformed . ".c");
            push (@sources, $unxformed . '.c');
            push (@objects, $unxformed . $obj);
-           push (@files, $unxformed . ".c ");
+           push (@files, $unxformed . '.c');
        }
        else
        {
index 59a6539b93c8fb88dc8fcdb5473960bd448359f5..ddb3adee5a25953289e54103fd52243f41a2d32d 100644 (file)
@@ -1,3 +1,7 @@
+Thu Sep 12 14:57:49 1996  Tom Tromey  <tromey@creche.cygnus.com>
+
+       * implicit.test: New file.
+
 Wed Sep 11 13:57:10 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
        * colneq.test: New file.
index d22533e99298c52ba3989b803b6eaf19e23d4903..eb0d6b0323272ea8ffbcf46e7d4b5c1a4bb077ce 100644 (file)
@@ -14,6 +14,6 @@ error.test colon.test vtexi2.test tags.test comment.test libfiles.test \
 man.test info.test obsolete.test lex.test scripts.test subdir2.test \
 exsource.test canon4.test dup.test defun.test cxxlink.test cxxnoc.test \
 order.test libobj2.test interp.test alllib.test block.test libobj3.test \
-gnits.test interp2.test colneq.test
+gnits.test interp2.test colneq.test implicit.test
 
 EXTRA_DIST = defs $(TESTS)
index 613a307458ab478564de4e7219af96e1967193f2..3a16a7a89705017d89a98c70e236090d574069ec 100644 (file)
@@ -52,7 +52,7 @@ error.test colon.test vtexi2.test tags.test comment.test libfiles.test \
 man.test info.test obsolete.test lex.test scripts.test subdir2.test \
 exsource.test canon4.test dup.test defun.test cxxlink.test cxxnoc.test \
 order.test libobj2.test interp.test alllib.test block.test libobj3.test \
-gnits.test interp2.test colneq.test
+gnits.test interp2.test colneq.test implicit.test
 
 EXTRA_DIST = defs $(TESTS)
 mkinstalldirs = $(top_srcdir)/mkinstalldirs
@@ -142,11 +142,11 @@ mostlyclean-generic:
 
 clean-generic:
        test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
-       test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
 distclean-generic:
        rm -f Makefile $(DISTCLEANFILES)
        rm -f config.cache config.log $(CONFIG_HEADER) stamp-h
+       test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
 maintainer-clean-generic:
        test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
diff --git a/tests/implicit.test b/tests/implicit.test
new file mode 100755 (executable)
index 0000000..ba56fff
--- /dev/null
@@ -0,0 +1,14 @@
+#! /bin/sh
+
+# Test to make sure implicit .o's are listed as appropriate.  Report
+# from Henrik Frystyk Nielsen.
+
+. $srcdir/defs || exit 1
+
+cat > Makefile.am << 'END'
+noinst_PROGRAMS = libapp_1
+END
+
+$AUTOMAKE || exit 1
+
+grep '^libapp_1_OBJECTS' Makefile.in | grep '\.o'
This page took 0.042599 seconds and 5 git commands to generate.