]> ruderich.org/simon Gitweb - blhc/blhc.git/commitdiff
Remove unnecessary check for "Depends:".
authorSimon Ruderich <simon@ruderich.org>
Thu, 22 Mar 2012 14:02:47 +0000 (15:02 +0100)
committerSimon Ruderich <simon@ruderich.org>
Thu, 22 Mar 2012 14:02:47 +0000 (15:02 +0100)
The end of the build log is now respected, "Depends:" comes after that.

bin/blhc
t/logs/debian

index 9aa0133b22720b3bdd21897bdbc1cb29c09d9f3c..47f4e2a8ca9027fe1996a31ba5739d49ca8a6782 100755 (executable)
--- a/bin/blhc
+++ b/bin/blhc
@@ -461,9 +461,6 @@ while (my $line = <>) {
                     or $line =~ /^\s*(?:- )?(?:HOST_)?(?: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
 
             # Check if additional hardening options were used. Used to ensure
             # they are used for the complete build.
index aede2a97cefcbb289beef3f4b16b828de6023e2a..ce91a139e7d0d1c03015ab505963e9fc9e8086e9 100644 (file)
@@ -6,8 +6,6 @@ dh_auto_configure -- CFLAGS="-g -O2 -fstack-protector --param=ssp-buffer-size=4
 
 gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -Wall -c test.c
 
- Depends: libc6 (>= 2.7), gcc
-
 # `...` isn't expanded by the Makefile, assume dpkg-buildflags returns the
 # correct flags.
 gcc -c `dpkg-buildflags --get CFLAGS` test.c
@@ -17,3 +15,7 @@ gcc -c `dpkg-buildflags --get CFLAGS` `dpkg-buildflags --get CPPFLAGS` test.c
 g++ -c `dpkg-buildflags --get CXXFLAGS` `dpkg-buildflags --get CPPFLAGS` test.cc
 gcc -o test test.o `dpkg-buildflags --get LDFLAGS`
 gcc -o test test.o `dpkg-buildflags --get CFLAGS`
+
+Build finished at 20120308-1648
+
+ Depends: libc6 (>= 2.7), gcc