]> sourceware.org Git - automake.git/commitdiff
Fixed bug reported by Franc,ois
authorTom Tromey <tromey@redhat.com>
Mon, 12 Feb 1996 20:59:46 +0000 (20:59 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 12 Feb 1996 20:59:46 +0000 (20:59 +0000)
ChangeLog
TODO
automake.in
tests/ChangeLog
tests/Makefile.am
tests/Makefile.in

index 54eb0966059ab3558a6f730386e176fe18752bcb..cbcb87d76c5bebd5dfaf8f5ef20c049c34f586ae 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,13 @@
 Mon Feb 12 10:39:28 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
+       * automake.in (scan_configure): Ignore "\" in AC_OUTPUT line.
+       Test acouttbs.test.
+
        * automake.in (scan_configure): Delete everything after "," or
        ")".  Test acoutnoq.test.
        (handle_dist): Use $relative_dir, not nonexistent $subdir.
+       (handle_subdirs): 'po' and 'intl' are sometimes substituted into
+       SUBDIRS; don't warn about their absence.
 
 Sun Feb 11 15:55:15 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
diff --git a/TODO b/TODO
index 067ee8d096466ace2f9fbed5e9856c57d02c80fa..0013c60f29c93dde38de3f8b34a6c38304113d22 100644 (file)
--- a/TODO
+++ b/TODO
@@ -5,6 +5,8 @@ Top priorities:
 * Rewrite clean targets.
 * Expand test suite.
 
+Makefile.in must now depend on configure.in
+
 Consider using Ulrich's test suite idea
 If so, also allow support for Cygnus-style dejagnu-based test suites
 via an option
index ee8ddb227637bd8115878fb2454333b493eb2ad5..856124c0efb958c6c6da9cac3d335c5c5a983ef5 100755 (executable)
@@ -1097,13 +1097,6 @@ sub handle_subdirs
        return;
     }
 
-    &am_conf_error
-       ("ud_GNU_GETTEXT in configure.in but \`po' not in SUBDIRS")
-           if $seen_gettext && $contents{'SUBDIRS'} !~ /\bpo\b/;
-    &am_conf_error
-       ("ud_GNU_GETTEXT in configure.in but \`intl' not in SUBDIRS")
-           if $seen_gettext && $contents{'SUBDIRS'} !~ /\bintl\b/;
-
     &require_file ($NORMAL, 'ABOUT-NLS') if $seen_gettext;
 
     return if ! defined $contents{'SUBDIRS'};
@@ -1577,6 +1570,7 @@ sub scan_configure
            # Look at potential Makefile.am's.
            foreach (split)
            {
+               next if $_ eq "\\";
                if (-f $_ . '.am')
                {
                    push (@make_list, $_);
index 02308a02964d93d5c513d4b4ca7456c1d4e2dab6..eabfe8f1cd367c65d6fcee9e490e7211224a92cc 100644 (file)
@@ -1,5 +1,7 @@
 Mon Feb 12 10:05:48 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
+       * acouttbs.test: New file.
+
        * Makefile.am (DIST_OTHER): New variable.
 
        * acoutnoq.test: New file.
index a5ee951750e9c903e680dc2e6e5594cc62b39a9a..675b95c1504e324f1c87b63c77b441568940d3e1 100644 (file)
@@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = gnits
 ## FIXME Ulrich has suggested implementing this in Automake.
 ## Perhaps he is right.
 TESTS = mdate.test vtexi.test acoutput.test instexec.test checkall.test \
-acoutnoq.test
+acoutnoq.test acouttbs.test
 
 DIST_OTHER = $(TESTS)
 
index 78c38cdec78452ab77f84bdf759ecc9b4eaf666c..1ed49398ebd4c8682969ed4c3f032f8a5b90f947 100644 (file)
@@ -41,7 +41,7 @@ transform = @program_transform_name@
 AUTOMAKE_OPTIONS = gnits
 
 TESTS = mdate.test vtexi.test acoutput.test instexec.test checkall.test \
-acoutnoq.test
+acoutnoq.test acouttbs.test
 
 DIST_OTHER = $(TESTS)
 DIST_COMMON = ChangeLog Makefile.am Makefile.in
This page took 0.04318 seconds and 5 git commands to generate.