summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Pentchev <roam@debian.org>2020-06-19 18:11:25 +0300
committerPeter Pentchev <roam@debian.org>2020-06-19 18:11:25 +0300
commit47dbef92da626bbcea08c90841df61a383d30066 (patch)
treec604995a3a7e129b5a1192aaaaad61f401eb750e
parente8f0c52d3870da29b51e6e5733d6d8e4543980de (diff)
Do not make a whole target magically disappear.
-rw-r--r--debian/changelog7
-rwxr-xr-xdebian/rules2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index a76861f..191f10d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+mdk-doc (1.2.10-3) UNRELEASED; urgency=medium
+
+ * Do not make a whole rules target magically disappear, only put
+ the recipe in a conditional.
+
+ -- Peter Pentchev <roam@debian.org> Fri, 19 Jun 2020 18:10:44 +0300
+
mdk-doc (1.2.10-2) unstable; urgency=medium
* Use the test-name autopkgtest feature.
diff --git a/debian/rules b/debian/rules
index 31ba897..d803e0d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -40,8 +40,8 @@ ifeq (${DEB_NODOC},0)
mv -v $t/${mhtml} $t/${html}
endif
-ifeq (${DEB_NODOC},1)
override_dh_install:
+ifeq (${DEB_NODOC},1)
# Nothing
endif