* Also honor parallel=n in DEB_BUILD_OPTIONS.

This commit is contained in:
Loïc Minier
2007-05-08 09:10:43 +00:00
parent a81baaa404
commit 2378d67966
2 changed files with 5 additions and 3 deletions

3
debian/changelog vendored
View File

@ -2,8 +2,9 @@ gtk+2.0 (2.10.12-2) UNRELEASED; urgency=low
* New patch, 15_default-fallback-icon-theme, sets the default
gtk-fallback-icon-theme to "gnome"; closes: #421353.
* Also honor parallel=n in DEB_BUILD_OPTIONS.
-- Loic Minier <lool@dooz.org> Thu, 03 May 2007 21:26:54 +0200
-- Loic Minier <lool@dooz.org> Tue, 08 May 2007 11:10:05 +0200
gtk+2.0 (2.10.12-1) unstable; urgency=low

5
debian/rules vendored
View File

@ -18,9 +18,10 @@ PATCH_DIR := debian/patches
# rules in this debian/rules Makefile can be built concurrently as well as
# upstream rules in Makefile; all $(MAKE) invocations will inherit this flag,
# if you recurse into debian/rules ($(MAKE)
# -f debian/rules in rules), you need to pass a flag to avoid adding "-j2" when
# -f debian/rules in rules), you need to pass a flag to avoid adding "-jX" when
# the childs encounters this line
MAKEFLAGS += $(if $(DEB_BUILD_OPTIONS_PARALLEL),-j2 $(DEB_BUILD_OPTIONS_PARALLEL))
DEB_BUILD_OPTIONS_PARALLEL ?= $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += $(if $(DEB_BUILD_OPTIONS_PARALLEL),-j$(DEB_BUILD_OPTIONS_PARALLEL))
# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)