diff options
| -rw-r--r-- | debian/changelog | 1 | ||||
| -rw-r--r-- | debian/control | 2 | ||||
| -rwxr-xr-x | debian/rules | 6 |
3 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 2408c8e..761a490 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,7 @@ gnumach (2:1.3.99.dfsg.git20120219-1) unstable; urgency=low - Add stamp files, and build-indep and build-arch targets. - Pass -fno-omit-frame-pointer for -dbg builds, to fix kernel debugger traces & co. + - Enable parallel build. * debian/patches/70_dde.patch: Add experimental support for irq passing and physical memory allocation for DDE. Also adds nonetdev boot parameter to disable network device drivers. diff --git a/debian/control b/debian/control index 00d798c..437826d 100644 --- a/debian/control +++ b/debian/control @@ -8,7 +8,7 @@ Homepage: http://www.gnu.org/software/hurd/microkernel/mach/gnumach.html Vcs-Browser: http://git.debian.org/?p=pkg-hurd/gnumach.git Vcs-Git: git://git.debian.org/pkg-hurd/gnumach.git Build-Depends: debhelper (>= 7), mig, sharutils, - autoconf, automake + autoconf, automake, cdbs Standards-Version: 3.9.2 Package: gnumach diff --git a/debian/rules b/debian/rules index 7915ade..c6df7cf 100755 --- a/debian/rules +++ b/debian/rules @@ -41,6 +41,12 @@ else CFLAGS += -O2 endif +include /usr/share/cdbs/1/class/langcore.mk + +ifneq (,$(DEB_PARALLEL_JOBS)) +MAKEFLAGS += -j$(DEB_PARALLEL_JOBS) +endif + drivers := common_configure := \ |
