]> git.pld-linux.org Git - packages/rpm.git/commitdiff
- added conditional defines for disable post install compressing docs and
authorkloczek <kloczek@pld-linux.org>
Wed, 27 Sep 2000 11:23:54 +0000 (11:23 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
  post install stripping binaries. By default above swithes for above are
  enabled:

%install_post_compress_docs 1
%install_post_strip 1
[ACVS: ----------------------------------------------------------------------

Changed files:
    rpm.macros -> 1.31

rpm.macros

index 08f603e262d6c85df1b0e45a5f657b89422b4894..94cfa47574b2cd38422d08fa3e0f76aebe0b3195 100644 (file)
@@ -106,16 +106,19 @@ done \
 #
 # Requires: xargs, find
 #
+%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 -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; \
+       %{?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; \
+%{?nstall_post_compress_docs: \
+                       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
 #
+%install_post_strip    1
 %__spec_install_post_strip {%{!?debug: \
+%{?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.046616 seconds and 4 git commands to generate.