automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 02-define-exts.patch


From: Akim Demaille
Subject: Re: 02-define-exts.patch
Date: 05 Mar 2001 16:05:17 +0100
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley)

Tom Tromey <address@hidden> writes:

> With this patch we'll be doing this all the time instead of only in a
> certain obscure situation.  Bummer.

I agree...

Another issue is that of @FOO@ variable in bin_PROGRAMS etc.


> Akim> -test "`fgrep '.c.o' Makefile.in | wc -l`" -eq 1
> Akim> +grep '^\.c\.o:' Makefile.in
> Akim> +grep '^\.c\.obj:' Makefile.in
> 
> This change doesn't quite work:
> 
> * It tests for a different problem.  The old problem was that we could
>   end up with more than one .c.o rule -- with the change we no longer
>   check for that.
> 
> * If the first grep fails the test case won't fail.
>   You need an `|| exit 1'

Ahem, sorry...

I did this:

set -e

$AUTOMAKE -a

grep -c '^\.c\.o:' Makefile.in   | grep '^1$'
grep -c '^\.c\.obj:' Makefile.in | grep '^1$'

exit 0



reply via email to

[Prev in Thread] Current Thread [Next in Thread]