From: Adam Dickmeiss Date: Thu, 10 Aug 2006 13:08:57 +0000 (+0000) Subject: Dont hard code make options. Use MAKE="make -j8" or similar X-Git-Tag: ZEBRA.2.0.0~14 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=d1aad239391716f88270cc7bab75fbc59d9c0f30 Dont hard code make options. Use MAKE="make -j8" or similar --- diff --git a/debian/rules b/debian/rules index f6c3952..920d41e 100755 --- a/debian/rules +++ b/debian/rules @@ -33,7 +33,7 @@ build-stamp: config.status dh_testdir # Add here commands to compile the package. - $(MAKE) -j8 + $(MAKE) touch build-stamp @@ -43,7 +43,7 @@ clean: rm -f build-stamp # Add here commands to clean up after the build process. - -$(MAKE) -j8 distclean + -$(MAKE) distclean ifneq "$(wildcard /usr/share/misc/config.sub)" "" if test ! -f config.sub; then cp -f /usr/share/misc/config.sub config.sub ; fi endif @@ -60,7 +60,7 @@ install: build dh_installdirs # Add here commands to install the package into debian/tmp - $(MAKE) -j8 install DESTDIR=$(CURDIR)/debian/tmp + $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp # Build architecture-independent files here.