]> sourceware.org Git - automake.git/commitdiff
* automake.in (get_object_extension): Fixed quoting bug. Fixes
authorTom Tromey <tromey@redhat.com>
Sun, 15 Aug 1999 22:54:23 +0000 (22:54 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 15 Aug 1999 22:54:23 +0000 (22:54 +0000)
ansi4.test.

ChangeLog
THANKS
TODO
automake.in

index 88bad5bf6cced761bf4eed4f71a20072523b506e..e0c2d564d69e9b62b3b73827f5245936adebfe60 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-08-15  Tom Tromey  <tromey@cygnus.com>
+
+       * automake.in (get_object_extension): Fixed quoting bug.  Fixes
+       ansi4.test.
+
 1999-07-27  Tom Tromey  <tromey@cygnus.com>
 
        * config.guess, config.sub: New versions from autoconf.
diff --git a/THANKS b/THANKS
index 3f60cff84f73e66cfc5f2d426cd0dcec6e69b04c..ea1ae7201b2a58ea822b9729ab553508a538396f 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -101,6 +101,7 @@ Shuhei Amakawa              <sa264@cam.ac.uk>
 Steve M. Robbins       steve@nyongwa.montreal.qc.ca
 Tatu Ylonen            ylo@ssh.fi
 The Crimson Binome     steve@nyongwa.montreal.qc.ca
+Thomas Gagne           tgagne@ix.netcom.com
 Thomas Morgan          tmorgan@pobox.com
 Thomas Tanner          tanner@ffii.org
 Tim Goodwin            tjg@star.le.ac.uk
diff --git a/TODO b/TODO
index f20855f7288cbc35630e00273cf25e22991620b8..31afb1da9c1cb539e51a5d9becf680b17525b55b 100644 (file)
--- a/TODO
+++ b/TODO
@@ -2,6 +2,16 @@
   Make it an error when the user tries to do this
   This must be done for 1.5
 
+* distcheck should make sure that each file that uses _() is
+  listed in POTFILES.in
+  From Jim Meyering:
+    # Verify that all source files using _() are listed in po/POTFILES.in.
+    po-check:
+           grep -E -v '^(#|$$)' po/POTFILES.in | sort > $@-1
+           grep -E -l '\b_\(' lib/*.c src/*.c | sort > $@-2
+           diff -u $@-1 $@-2
+           rm -f $@-1 $@-2
+
 * support prog_LIBS as override for LIBS
 
 * serious bug.  this doesn't work:
index 9c1b84af4d83070971c2a7b547a56a0b1406b56b..c8b8bb887cfbf0062665e699fcc077b70f60c621 100755 (executable)
@@ -920,7 +920,7 @@ sub get_object_extension
            # Generate rules to build ansi2knr.  If it is in some
            # other directory, then generate dependencies but have the
            # rule just run elsewhere.
-           $objext = $seen_objext ? ".$(OBJEXT)" : ".o";
+           $objext = $seen_objext ? ".\$(OBJEXT)" : ".o";
            $output_rules .= ($options{'ansi2knr'} . ': '
                              . $options{'ansi2knr'} . $objext . "\n");
            if ($options{'ansi2knr'} eq 'ansi2knr')
This page took 0.045002 seconds and 5 git commands to generate.