]> git.pld-linux.org Git - packages/rpm.git/commitdiff
- avoid compressing very small (manual) pages
authorElan Ruusamäe <glen@pld-linux.org>
Sat, 10 Jun 2006 16:25:14 +0000 (16:25 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    rpm.macros -> 1.305

rpm.macros

index fd1d0e06201b87e5ac5b383b031c59a89fc7bcac..65f99549a25d2968eb0daa02cbdbfa7854dc4884 100644 (file)
@@ -234,6 +234,11 @@ unset LINGUAS ||:\
 ; do echo $l; done >> %1 \
 }
 
+# minimum file size needed for compressed documents.
+# just smaller files than this get larger when compressed.
+# current number is based from experiment that 0 byte file compressed was 25 bytes .gz
+%_min_compress_bytes   25
+
 #-----------------------------------------------------------------
 # find and gzip all files in %{_mandir} and %{infodir}
 #
@@ -245,9 +250,9 @@ unset LINGUAS ||:\
        echo "Compress man and info pages."; \
        for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
                if [ -d "$RPM_BUILD_ROOT$i" ]; then \
-                       find "$RPM_BUILD_ROOT$i" -name \*.bz2 -print | xargs -r %{__bzip2} -df; \
-                       find "$RPM_BUILD_ROOT$i" -name \*.gz -print | xargs -r %{__gzip} -dnf; \
-                       find "$RPM_BUILD_ROOT$i" -type f -print | xargs -r %{__gzip} -9nf; \
+                       find "$RPM_BUILD_ROOT$i" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \
+                       find "$RPM_BUILD_ROOT$i" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \
+                       find "$RPM_BUILD_ROOT$i" -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \
                fi; \
        done; \
 }; __spec_install_post_compress_docs } }
This page took 0.048364 seconds and 4 git commands to generate.