rpms/redhat-rpm-config/F-10 limit-smp-16-threads.patch, NONE, 1.1 redhat-rpm-config.spec, 1.56, 1.57

Dennis Gilmore ausil at fedoraproject.org
Mon Feb 16 17:03:21 UTC 2009


Author: ausil

Update of /cvs/pkgs/rpms/redhat-rpm-config/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29591

Modified Files:
	redhat-rpm-config.spec 
Added Files:
	limit-smp-16-threads.patch 
Log Message:
limit _smp_mflags to 16


limit-smp-16-threads.patch:

--- NEW FILE limit-smp-16-threads.patch ---
diff -Nur redhat-rpm-config-9.0.2-orig/macros redhat-rpm-config-9.0.2/macros
--- redhat-rpm-config-9.0.2-orig/macros	2008-04-03 02:14:54.000000000 -0500
+++ redhat-rpm-config-9.0.2/macros	2008-05-20 13:33:15.000000000 -0500
@@ -68,7 +68,8 @@
 
 %_smp_mflags %([ -z "$RPM_BUILD_NCPUS" ] \\\
 	&& RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\
-	[ "$RPM_BUILD_NCPUS" -gt 1 ] && echo "-j$RPM_BUILD_NCPUS")
+        if [ "$RPM_BUILD_NCPUS" -gt 16 ]; then echo "-j16"; \\\
+        elif [ "$RPM_BUILD_NCPUS" -gt 1 ]; then echo "-j$RPM_BUILD_NCPUS"; fi)
 
 #==============================================================================
 # ---- Build policy macros.


Index: redhat-rpm-config.spec
===================================================================
RCS file: /cvs/pkgs/rpms/redhat-rpm-config/F-10/redhat-rpm-config.spec,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- redhat-rpm-config.spec	3 Sep 2008 20:22:56 -0000	1.56
+++ redhat-rpm-config.spec	16 Feb 2009 17:02:51 -0000	1.57
@@ -1,12 +1,13 @@
 Summary: Red Hat specific rpm configuration files.
 Name: redhat-rpm-config
 Version: 9.0.3
-Release: 3%{?dist}
+Release: 4%{?dist}
 # No version specified.
 License: GPL+
 Group: Development/System
 Source: redhat-rpm-config-%{version}.tar.bz2
 Patch0: redhat-rpm-config-9.0.3-fix-requires.patch
+Patch1: limit-smp-16-threads.patch 
 BuildArch: noarch
 Requires: mktemp
 BuildRoot: %{_tmppath}/%{name}-root
@@ -17,6 +18,7 @@
 %prep
 %setup -q
 %patch0 -p0
+%patch1 -p1
 
 %install
 make DESTDIR=${RPM_BUILD_ROOT} install
@@ -29,6 +31,9 @@
 %{_prefix}/lib/rpm/redhat
 
 %changelog
+* Mon Feb 16 2009 Dennis Gilmore <dennis at ausil.us> - 9.0.3-4
+- limit _smp_flags to -j16
+
 * Wed Sep  3 2008 Tom "spot" Callaway <tcallawa at redhat.com> - 9.0.3-3
 - fix license tag
 - nuke ancient conflicts




More information about the scm-commits mailing list