From: Tom Tromey Date: Tue, 8 May 2001 20:34:26 +0000 (+0000) Subject: * automake.in (conditional_true_when): Don't return if we see X-Git-Tag: Release-1-4f~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00e65cdd2233772dcb7988d56fff1d2d2007aa6e;p=thirdparty%2Fautomake.git * automake.in (conditional_true_when): Don't return if we see `TRUE'. --- diff --git a/ChangeLog b/ChangeLog index 806acb7a8..acaf82dc3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-05-08 Tom Tromey + * automake.in (conditional_true_when): Don't return if we see + `TRUE'. + * tests/objc.test: Removed. * tests/Makefile.am (XFAIL_TESTS): Removed objc.test. (TESTS): Likewise. diff --git a/automake.in b/automake.in index b2c8a134f..ea75ddd79 100755 --- a/automake.in +++ b/automake.in @@ -5532,7 +5532,7 @@ sub conditional_true_when ($$) foreach my $comp (split (' ', $cond)) { # TRUE is always true. - return 1 if $comp eq 'TRUE'; + next if $comp eq 'TRUE'; return 0 if ! defined $cond_vals{$comp}; }