[apr] 01/06: Avoid empty build target

Stefan Fritsch sf at moszumanska.debian.org
Sun Feb 25 15:44:18 UTC 2018


This is an automated email from the git hooks/post-receive script.

sf pushed a commit to branch master
in repository apr.

commit 2c90c03661fd95e8c121b6e0fc62038cb70fd78d
Author: Stefan Fritsch <sf at sfritsch.de>
Date:   Sun Feb 25 16:02:38 2018 +0100

    Avoid empty build target
---
 debian/changelog | 7 +++++++
 debian/rules     | 4 ++++
 2 files changed, 11 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 01564a1..17570a7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+apr (1.6.3-2) UNRELEASED; urgency=medium
+
+  * Avoid empty build target, fixes FTBFS. Thanks to Niels Thykier for the
+    patch. Closes: #888593
+
+ -- Stefan Fritsch <sf at debian.org>  Sun, 25 Feb 2018 16:01:56 +0100
+
 apr (1.6.3-1) unstable; urgency=medium
 
   * New upstream version
diff --git a/debian/rules b/debian/rules
index 7b723ca..80415ca 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,6 +14,10 @@ DEB_HOST_MULTIARCH  ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
 # The 'build' target needs special handling because there there is a directory
 # named 'build'.
 .PHONY: build
+# The build target must not be empty.  Sadly because of how make
+# works, we have do duplicate the target in this case.
+build:
+	dh $@ -B$(BUILDDIR) --parallel --with autotools_dev
 %:
 	dh $@ -B$(BUILDDIR) --parallel --with autotools_dev
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-apache/apr.git



More information about the Pkg-apache-commits mailing list