X-Git-Url: https://ruderich.org/simon/gitweb/?p=blhc%2Fblhc.git;a=blobdiff_plain;f=bin%2Fblhc;h=38466e4cca55187111ec244577cd12461dc384ad;hp=4713e287ad870f96d15ba8d6829fa54cf817970d;hb=cb6df05acfa32fe06b4f980422fd4b38c3239c0e;hpb=ba5b51988e7fb07b2621d46bbaa6101a26a9a334 diff --git a/bin/blhc b/bin/blhc index 4713e28..38466e4 100755 --- a/bin/blhc +++ b/bin/blhc @@ -632,10 +632,10 @@ FILE: foreach my $file (@ARGV) { # Ignore lines with no compiler commands. next if not $non_verbose and not $line =~ /\b$cc_regex(?:\s|\\)/o; - # Ignore lines with no filenames with extensions. May miss - # some non-verbose builds (e.g. "gcc -o test" [sic!]), but - # shouldn't be a problem as the log will most likely contain - # other non-verbose commands which are detected. + # Ignore lines with no filenames with extensions. May miss some + # non-verbose builds (e.g. "gcc -o test" [sic!]), but shouldn't be + # a problem as the log will most likely contain other non-verbose + # commands which are detected. next if not $non_verbose and not $line =~ /$file_extension_regex/o; @@ -649,8 +649,8 @@ FILE: foreach my $file (@ARGV) { /xo; next if $line =~ /^\s*(?:- )?(?:HOST_)?(?:CC|CXX)\s*=\s*$cc_regex_full\s*$/o; - # Check if additional hardening options were used. Used to - # ensure they are used for the complete build. + # Check if additional hardening options were used. Used to ensure + # they are used for the complete build. $harden_pie = 1 if any_flags_used($line, @def_cflags_pie, @def_ldflags_pie); $harden_bindnow = 1 if any_flags_used($line, @def_ldflags_bindnow);