From 6a4ae3a83009eeeece0f0e8fb506395404fd3d60 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sun, 15 Aug 1999 22:54:23 +0000 Subject: [PATCH] * automake.in (get_object_extension): Fixed quoting bug. Fixes ansi4.test. --- ChangeLog | 5 +++++ THANKS | 1 + TODO | 10 ++++++++++ automake.in | 2 +- 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 88bad5bf..e0c2d564 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-08-15 Tom Tromey + + * automake.in (get_object_extension): Fixed quoting bug. Fixes + ansi4.test. + 1999-07-27 Tom Tromey * config.guess, config.sub: New versions from autoconf. diff --git a/THANKS b/THANKS index 3f60cff8..ea1ae720 100644 --- a/THANKS +++ b/THANKS @@ -101,6 +101,7 @@ Shuhei Amakawa 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 f20855f7..31afb1da 100644 --- 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: diff --git a/automake.in b/automake.in index 9c1b84af..c8b8bb88 100755 --- a/automake.in +++ b/automake.in @@ -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') -- 2.43.5