r44821 - in /packages/fftw3/trunk/debian: changelog rules
jtaylor-guest at users.alioth.debian.org
jtaylor-guest at users.alioth.debian.org
Fri May 18 15:11:01 UTC 2012
Author: jtaylor-guest
Date: Fri May 18 15:11:00 2012
New Revision: 44821
URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=44821
Log:
respect DEB_BUILD_OPTIONS parallel
Modified:
packages/fftw3/trunk/debian/changelog
packages/fftw3/trunk/debian/rules
Modified: packages/fftw3/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/fftw3/trunk/debian/changelog?rev=44821&op=diff
==============================================================================
--- packages/fftw3/trunk/debian/changelog (original)
+++ packages/fftw3/trunk/debian/changelog Fri May 18 15:11:00 2012
@@ -8,8 +8,9 @@
package size gain is negiglible compared to main library
* drop debian/patches/fix-links.patch applied upstream
* remove empty directories from libfftw3-dev
-
- -- Julian Taylor <jtaylor.debian at googlemail.com> Tue, 08 May 2012 19:53:39 +0200
+ * respect DEB_BUILD_OPTIONS parallel
+
+ -- Julian Taylor <jtaylor.debian at googlemail.com> Fri, 18 May 2012 17:08:11 +0200
fftw3 (3.3.1-4) experimental; urgency=low
Modified: packages/fftw3/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/fftw3/trunk/debian/rules?rev=44821&op=diff
==============================================================================
--- packages/fftw3/trunk/debian/rules (original)
+++ packages/fftw3/trunk/debian/rules Fri May 18 15:11:00 2012
@@ -19,6 +19,10 @@
#--enable-sse2 enable SSE2 optimizations (double precision only)
#--enable-altivec enable Altivec optimizations (single precision only)
+ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+ NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+ MAKEFLAGS += -j$(NUMJOBS)
+endif
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
More information about the debian-science-commits
mailing list