From f200d553fb30abe75314c5be8181da2b0dc0b57d Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 18 Mar 2006 22:02:31 +0000 Subject: r14549: Use make-compatible syntax in extra_cflags.txt so we can avoid cflags.pl when using GNU make (This used to be commit 4354147f6b5e9485d0550fa6c8a33be526f54db6) --- source4/script/cflags.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source4/script/cflags.pl') diff --git a/source4/script/cflags.pl b/source4/script/cflags.pl index 476960db5d..c848b56e7d 100755 --- a/source4/script/cflags.pl +++ b/source4/script/cflags.pl @@ -13,8 +13,10 @@ sub check_flags($) my ($name)=@_; open (IN, "extra_cflags.txt"); while ( =~ /^([^:]+): (.*)$/) { - next unless ($1 eq $target); - print "$2 "; + next unless (grep(/^$target$/, (split / /, $1))); + $_ = $2; + s/^CFLAGS\+=//; + print "$_ "; } close(IN); print "\n"; -- cgit