From 0d284c77bba181fde9b6e256dbfe8fb82fa72805 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 13 May 2012 22:29:25 +0200 Subject: [PATCH] Rework a bit the build-arch/build-indep rules The building of documentation under build-indep is a bit wrong, since there are no arch-independent packages. Let's make build-indep a no-op, and move the "$(MAKE) doc" to build-arch. --- debian/rules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/rules b/debian/rules index 93c719a..652632f 100755 --- a/debian/rules +++ b/debian/rules @@ -23,6 +23,7 @@ build: build-arch build-indep touch $@ build-arch: $(PYVERS:%=build-python%) $(PY3VERS:%=build-python%) + $(MAKE) doc touch $@ build-python%: @@ -31,13 +32,12 @@ build-python%: touch $@ build-indep: - $(MAKE) doc touch $@ clean: dh_testdir dh_testroot - rm -f build-arch-stamp build-indep #CONFIGURE-STAMP# + rm -f build-indep build-arch $(MAKE) clean rm -f $(PYVERS:%=build-python%) rm -f $(PY3VERS:%=build-python%) -- 2.39.5