]> ruderich.org/simon Gitweb - blhc/blhc.git/blobdiff - bin/blhc
Also support colored non-verbose builds on armhf and hurd.
[blhc/blhc.git] / bin / blhc
index a884e11407188fcf0e679416e695150cbf4f4b08..0b4b681086bb009f85d9658882b49c88164dd4e4 100755 (executable)
--- a/bin/blhc
+++ b/bin/blhc
@@ -288,6 +288,9 @@ while (my $line = <>) {
     # Also strip '\0xf' (delete previous character), used by Elink's build
     # system.
     $line =~ s/\x0f//g;
+    # And "ESC(B" which seems to be used on armhf and hurd (not sure what it
+    # does).
+    $line =~ s/\033\(B//g;
 
     # Check if this line indicates a non verbose build.
     my $non_verbose = is_non_verbose_build($line);