]> git.pld-linux.org Git - packages/rpm-build-macros.git/blobdiff - rpm.macros
s/install_post_no_compress_docs/no_install_post_compress_docs/
[packages/rpm-build-macros.git] / rpm.macros
index deb640f624c46ab201239579892050302e20d9af..278097572f44f8403974ec02d23ee92f5f32a2d3 100644 (file)
@@ -106,16 +106,19 @@ done \
 #
 # Requires: xargs, find
 #
+#%no_install_post_compress_docs        1
 %__spec_install_post_compress_docs { \
 echo "Compress man and info pages."; \
-%{?verbose:set -x;} \
-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 %{__bzip2} -df; \
-               find "$RPM_BUILD_ROOT$i" -name \*.gz -print | xargs %{__gzip} -dnf; \
-               find "$RPM_BUILD_ROOT$i" -type f -print | xargs %{__gzip} -9nf; \
-       fi; \
-done; \
+%{!?no_install_post_compress_docs: \
+       %{?verbose:set -x;} \
+       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; \
+               fi; \
+       done; \
+} \
 }
 
 #-----------------------------------------------------------------
@@ -123,7 +126,9 @@ done; \
 #
 # Requires: find, awk, strip, cut, xargs
 #
+#%no_install_post_strip        1
 %__spec_install_post_strip {%{!?debug: \
+%{!?no_install_post_strip: \
        %{?verbose:set -x;} \
        echo "Strip executable binaries and shared object files."; \
        filelist=`find $RPM_BUILD_ROOT -type f`; \
@@ -137,6 +142,7 @@ done; \
        if [ -n "$elfsharedlist" ]; then \
                strip --strip-unneeded --remove-section=.note  --remove-section=.comment $elfsharedlist; \
        fi; } \
+} \
 }
 
 #-----------------------------------------------------------------
This page took 0.028115 seconds and 4 git commands to generate.