[Pkg-mono-svn-commits] [SCM] mono branch, master-experimental, updated. debian/2.6.7-5-34-g79f2862

Mirco Bauer meebey at meebey.net
Fri Jan 28 22:23:12 UTC 2011


The following commit has been merged in the master-experimental branch:
commit 79f286255a944476395fda8c9722095abf659a03
Author: Mirco Bauer <meebey at meebey.net>
Date:   Fri Jan 28 18:20:10 2011 +0100

    Build eglib before libgc and made them parallel buildable

diff --git a/debian/rules b/debian/rules
index d80c470..7700d78 100755
--- a/debian/rules
+++ b/debian/rules
@@ -92,6 +92,8 @@ export MAKEFLAGS=$(MAKE_FLAGS)
 
 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
 	NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+	EGLIB_MAKE_FLAGS += -j$(NUMJOBS)
+	LIBGC_MAKE_FLAGS += -j$(NUMJOBS)
 	MONO_MAKE_FLAGS += -j$(NUMJOBS)
 endif
 
@@ -113,7 +115,8 @@ configure-stamp: autoreconf-stamp
 build: build-stamp
 build-stamp: configure-stamp
 	dh_testdir
-	cd libgc && $(MAKE)
+	cd eglib && $(MAKE) $(EGLIB_MAKE_FLAGS)
+	cd libgc && $(MAKE) $(LIBGC_MAKE_FLAGS)
 	cd mono && $(MAKE) $(MONO_MAKE_FLAGS)
 	LC_ALL=C $(MAKE) $(MAKE_FLAGS) EXTERNAL_MCS=false EXTERNAL_MONO=false
 

-- 
mono



More information about the Pkg-mono-svn-commits mailing list