X-Git-Url: https://ruderich.org/simon/gitweb/?p=blhc%2Fblhc.git;a=blobdiff_plain;f=bin%2Fblhc;h=bd9ebbdb644eb52ca5b9f782f9ff0616077dc02e;hp=a29313dfffb97dc2bee2b74f9c9f8e729f045ac6;hb=65129c8b72aecd6f2f44cde405bf81c803fa3ba9;hpb=7e824086332291bdf968c3c45f350964295c005e diff --git a/bin/blhc b/bin/blhc index a29313d..bd9ebbd 100755 --- a/bin/blhc +++ b/bin/blhc @@ -345,6 +345,10 @@ while (my $line = <>) { or $line =~ /^\s*(?:- )?(?:CC|CXX)\s*=\s*$cc_regex\s*$/ or $line =~ /^\s*-- Check for working (?:C|CXX) compiler: / or $line =~ /^\s*(?:echo )?Using [A-Z_]+\s*=\s*/; + # Debian buildd output. + next if $line =~ /^\s*Depends: .*?$cc_regex.*?$/ + and $line !~ /\s-./; # option, prevent false negatives + push @input, $line; }