X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=debian%2Frules;h=2bd4939551392df9945d1dec60e51c3e91200aa4;hb=18cd67d0f01ac7fb916aba18fedfb8daa013cd4b;hp=81659a45170c0006cb3d3e9acb77c579459f8dbf;hpb=1e0a42d0979887fefcbb3918bd5cd5832afbecf0;p=nfs-utils.git diff --git a/debian/rules b/debian/rules index 81659a4..2bd4939 100755 --- a/debian/rules +++ b/debian/rules @@ -2,7 +2,18 @@ include /usr/share/quilt/quilt.make -DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH) +# Parsing of DEB_BUILD_OPTIONS flags. +# Note that nostrip is handled automatically by debhelper. +CFLAGS := -g -Wall +ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + MAKEFLAGS += -j$(NUMJOBS) +endif # Temporary root DEBTMP := $(CURDIR)/debian/tmp @@ -10,14 +21,10 @@ DEBTMP := $(CURDIR)/debian/tmp build: patch build-stamp build-stamp: dh_testdir -ifeq ($(DEB_HOST_ARCH),arm) - patch -p0 -i debian/major.patch -endif - CFLAGS="-g -O2 -Wall" ./configure \ + CFLAGS="$(CFLAGS)" ./configure \ --mandir='$${prefix}/share/man' \ - --enable-secure-statd \ --with-tcp-wrappers - $(MAKE) + $(MAKE) $(MAKEFLAGS) touch build-stamp clean: unpatch @@ -44,9 +51,10 @@ binary-arch: build dh_installman dh_link dh_installchangelogs ChangeLog - #dh_strip + dh_strip dh_compress - dh_fixperms -Xmount.nfs + dh_fixperms + chmod u+s debian/nfs-common/sbin/mount.nfs dh_installdeb dh_shlibdeps dh_gencontrol