]> git.pld-linux.org Git - packages/rpm.git/commitdiff
- line counts stright
authorElan Ruusamäe <glen@pld-linux.org>
Tue, 29 Jan 2008 22:32:31 +0000 (22:32 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- no need to scan kernel modules dir for executables
- striping kernel modules message lacked filecount

Changed files:
    rpm.macros -> 1.418

rpm.macros

index 9f23cbebb90802881a80ebc7d0f359ff4ac83261..33b325b37f034e911db47f32e50a1374db49b7bb 100644 (file)
@@ -353,32 +353,32 @@ if [ -d "$RPM_BUILD_ROOT" ]; then \
                modulelist=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
                modulecount=$(echo -n "$modulelist" | wc -l); \
                if [ "$modulecount" -gt 0 ]; then \
                modulelist=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
                modulecount=$(echo -n "$modulelist" | wc -l); \
                if [ "$modulecount" -gt 0 ]; then \
-                       printf "Stripping %d kernel modules..."; \
+                       printf "Stripping %d kernel modules..." $modulecount; \
                        echo "$modulelist" | xargs -l512 chmod u+w; \
                        echo "$modulelist" | xargs -l512 %{__strip} --strip-unneeded --remove-section=.comment --remove-section=.note.GNU-stack; \
                        echo "DONE"; \
                fi; \
        fi; \
                        echo "$modulelist" | xargs -l512 chmod u+w; \
                        echo "$modulelist" | xargs -l512 %{__strip} --strip-unneeded --remove-section=.comment --remove-section=.note.GNU-stack; \
                        echo "DONE"; \
                fi; \
        fi; \
-       filelist=`find $RPM_BUILD_ROOT -type f ! -regex ".*/usr/lib[0-9]*/debug/.*\.debug" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautostrip:! -regex "%{_noautostrip}"} %{?_autostripall:! -regex "%{_autostripall}"} %{?_autostripunneeded:! -regex "%{_autostripunneeded}"} %{?_autostripdebug:! -regex "%{_autostripdebug}"}`; \
+       filelist=`find $RPM_BUILD_ROOT -type f ! -regex ".*/usr/lib[0-9]*/debug/.*\.debug" ! -regex ".*/lib/modules/.*" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautostrip:! -regex "%{_noautostrip}"} %{?_autostripall:! -regex "%{_autostripall}"} %{?_autostripunneeded:! -regex "%{_autostripunneeded}"} %{?_autostripdebug:! -regex "%{_autostripdebug}"}`; \
        if [ -n "$filelist" ]; then \
                filetypes=`echo "$filelist" | xargs -r -d'\\n' file`; \
                elfexelist=`echo "$filetypes" | awk -F: '/ELF.*executable/ {print $1}'`; \
                elfsharedlist=`echo "$filetypes" | awk -F: '/LF.*shared object/ {print $1}'`; \
                archiveslist=`echo "$filetypes" | awk -F: '/current ar archive/ {print $1}'`; \
                if [ -n "$elfexelist" ]; then \
        if [ -n "$filelist" ]; then \
                filetypes=`echo "$filelist" | xargs -r -d'\\n' file`; \
                elfexelist=`echo "$filetypes" | awk -F: '/ELF.*executable/ {print $1}'`; \
                elfsharedlist=`echo "$filetypes" | awk -F: '/LF.*shared object/ {print $1}'`; \
                archiveslist=`echo "$filetypes" | awk -F: '/current ar archive/ {print $1}'`; \
                if [ -n "$elfexelist" ]; then \
-                       printf "Stripping %d ELF executables..." $(echo "$elfexelist" | wc -l); \
+                       printf "Stripping %d ELF executables..." $(echo -n "$elfexelist" | wc -l); \
                        chmod u+w $elfexelist; \
                        %{__strip} --remove-section=.note --remove-section=.comment $elfexelist; \
                        echo "DONE"; \
                fi; \
                if [ -n "$elfsharedlist" ]; then \
                        chmod u+w $elfexelist; \
                        %{__strip} --remove-section=.note --remove-section=.comment $elfexelist; \
                        echo "DONE"; \
                fi; \
                if [ -n "$elfsharedlist" ]; then \
-                       printf "Stripping %d ELF shared libraries..." $(echo "$elfsharedlist" | wc -l); \
+                       printf "Stripping %d ELF shared libraries..." $(echo -n "$elfsharedlist" | wc -l); \
                        chmod u+w $elfsharedlist; \
                        %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $elfsharedlist; \
                        echo "DONE"; \
                fi; \
                if [ -n "$archiveslist" ]; then \
                        chmod u+w $elfsharedlist; \
                        %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $elfsharedlist; \
                        echo "DONE"; \
                fi; \
                if [ -n "$archiveslist" ]; then \
-                       printf "Stripping %d ar archives..." $(echo "$archiveslist" | wc -l); \
+                       printf "Stripping %d ar archives..." $(echo -n "$archiveslist" | wc -l); \
                        chmod u+w $archiveslist; \
                        %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $archiveslist; \
                        echo "DONE"; \
                        chmod u+w $archiveslist; \
                        %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $archiveslist; \
                        echo "DONE"; \
@@ -388,19 +388,19 @@ if [ -d "$RPM_BUILD_ROOT" ]; then \
     filelist_unneeded=%{?_autostripunneeded:`find $RPM_BUILD_ROOT -type f -regex "%{_autostripunneeded}"`}; \
     filelist_debug=%{?_autostripdebug:`find $RPM_BUILD_ROOT -type f -regex "%{_autostripdebug}"`}; \
        if [ -n "$filelist_all" ]; then \
     filelist_unneeded=%{?_autostripunneeded:`find $RPM_BUILD_ROOT -type f -regex "%{_autostripunneeded}"`}; \
     filelist_debug=%{?_autostripdebug:`find $RPM_BUILD_ROOT -type f -regex "%{_autostripdebug}"`}; \
        if [ -n "$filelist_all" ]; then \
-               printf "Stripping everything from %d additional files..." $(echo "$filelist_all" | wc -l); \
+               printf "Stripping everything from %d additional files..." $(echo -n "$filelist_all" | wc -l); \
                chmod u+w $filelist_all; \
                %{__strip} --remove-section=.note --remove-section=.comment $filelist_all; \
                echo "DONE"; \
        fi; \
        if [ -n "$filelist_unneeded" ]; then \
                chmod u+w $filelist_all; \
                %{__strip} --remove-section=.note --remove-section=.comment $filelist_all; \
                echo "DONE"; \
        fi; \
        if [ -n "$filelist_unneeded" ]; then \
-               printf "Stripping unneeded from %d additional files..." $(echo "$filelist_unneeded" | wc -l); \
+               printf "Stripping unneeded from %d additional files..." $(echo -n "$filelist_unneeded" | wc -l); \
                chmod u+w $filelist_unneeded; \
                %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $filelist_unneeded; \
                echo "DONE"; \
        fi; \
        if [ -n "$filelist_debug" ]; then \
                chmod u+w $filelist_unneeded; \
                %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $filelist_unneeded; \
                echo "DONE"; \
        fi; \
        if [ -n "$filelist_debug" ]; then \
-               printf "Stripping debuginfo from %d additional files..." $(echo "$filelist_debug" | wc -l); \
+               printf "Stripping debuginfo from %d additional files..." $(echo -n "$filelist_debug" | wc -l); \
                chmod u+w $filelist_debug; \
                %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $filelist_debug; \
                echo "DONE"; \
                chmod u+w $filelist_debug; \
                %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $filelist_debug; \
                echo "DONE"; \
@@ -425,7 +425,7 @@ if [ -d "$RPM_BUILD_ROOT" ]; then \
        fi
        #"
        if [ -n "$objs" ]; then \
        fi
        #"
        if [ -n "$objs" ]; then \
-               printf "Remove RPATH from %d executable binaries and shared object files.\n" $(echo "$objs" | wc -l); \
+               printf "Remove RPATH from %d executable binaries and shared object files.\n" $(echo -n "$objs" | wc -l); \
                echo "$objs" | \
                while read file; do \
                        rpath= ; \
                echo "$objs" | \
                while read file; do \
                        rpath= ; \
@@ -460,7 +460,7 @@ fi; }; __spec_install_post_chrpath } } }
                echo "Compress kernel modules"; \
                q=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
                echo "$q" | xargs -r %{__gzip} -9nf; \
                echo "Compress kernel modules"; \
                q=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
                echo "$q" | xargs -r %{__gzip} -9nf; \
-               printf "%d modules compressed\n" $(echo "$q" | wc -l); \
+               printf "%d modules compressed\n" $(echo -n "$q" | wc -l); \
                find $RPM_BUILD_ROOT/lib/modules -name '*o' -type l -printf "%p %l\n" | \
                while read a b; do ln -sf $b.gz $a.gz; rm -f $a; done; \
        fi; \
                find $RPM_BUILD_ROOT/lib/modules -name '*o' -type l -printf "%p %l\n" | \
                while read a b; do ln -sf $b.gz $a.gz; rm -f $a; done; \
        fi; \
This page took 0.11858 seconds and 4 git commands to generate.