Blame brp-compress-no-img.patch

e0a517
--- scripts/brp-compress.orig	2022-12-02 13:18:54.498881077 +0000
e0a517
+++ scripts/brp-compress	2022-12-02 13:20:00.038727777 +0000
e0a517
@@ -52,6 +52,8 @@ do
e0a517
     while IFS= read -r -d '' f; do
e0a517
 		[ -f "$f" ] || continue
Bernhard M. Wiedemann 1250f9
 
e0a517
+    case $(file "$f") in *"image data"*) continue;; esac
e0a517
+
e0a517
     case "$f" in
5b17a5
      *.gz|*.Z)    gunzip  -f "$f" || check_for_hard_link $d "$f"; b=`echo "$f" | sed -e 's/\.\(gz\|Z\)$//'`;;
5b17a5
      *.bz2)       bunzip2 -f "$f" || check_for_hard_link $d "$f"; b=`echo "$f" | sed -e 's/\.bz2$//'`;;