2022-12-02 14:17:05 +00:00
|
|
|
--- scripts/brp-compress.orig 2022-12-02 13:18:54.498881077 +0000
|
|
|
|
+++ scripts/brp-compress 2022-12-02 13:20:00.038727777 +0000
|
|
|
|
@@ -52,6 +52,8 @@ do
|
|
|
|
while IFS= read -r -d '' f; do
|
|
|
|
[ -f "$f" ] || continue
|
2013-09-05 14:43:27 +00:00
|
|
|
|
2022-12-02 14:17:05 +00:00
|
|
|
+ case $(file "$f") in *"image data"*) continue;; esac
|
|
|
|
+
|
|
|
|
case "$f" in
|
2023-10-11 15:13:46 +00:00
|
|
|
*.gz|*.Z) gunzip -f "$f" || check_for_hard_link $d "$f"; b=`echo "$f" | sed -e 's/\.\(gz\|Z\)$//'`;;
|
|
|
|
*.bz2) bunzip2 -f "$f" || check_for_hard_link $d "$f"; b=`echo "$f" | sed -e 's/\.bz2$//'`;;
|