]> git.pld-linux.org Git - packages/rpm.git/blobdiff - rpm.macros
- added Development/Languages/Sheme.
[packages/rpm.git] / rpm.macros
index 94cfa47574b2cd38422d08fa3e0f76aebe0b3195..744f70d42bdde9a46a9aab87abf4d09bbd0ee38f 100644 (file)
@@ -106,29 +106,29 @@ done \
 #
 # Requires: xargs, find
 #
-%install_post_compress_docs    1
+#%no_install_post_compress_docs        1
 %__spec_install_post_compress_docs { \
 echo "Compress man and info pages."; \
+%{!?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; \
-%{?nstall_post_compress_docs: \
                        find "$RPM_BUILD_ROOT$i" -type f -print | xargs -r %{__gzip} -9nf; \
-} \
                fi; \
        done; \
+} \
 }
 
 #-----------------------------------------------------------------
-# find and gzip all files in %{_mandir} and %{infodir}
+# Strip executable binaries and shared object files
 #
 # Requires: find, awk, strip, cut, xargs
 #
-%install_post_strip    1
+#%no_install_post_strip        1
 %__spec_install_post_strip {%{!?debug: \
-%{?install_post_strip: \
+%{!?no_install_post_strip: \
        %{?verbose:set -x;} \
        echo "Strip executable binaries and shared object files."; \
        filelist=`find $RPM_BUILD_ROOT -type f`; \
This page took 0.036757 seconds and 4 git commands to generate.