summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron M. Ucko <ucko@debian.org>2018-03-12 20:59:39 -0400
committerAaron M. Ucko <ucko@debian.org>2018-03-12 20:59:39 -0400
commit48da488d9e3611c2f179048dd06b1c6a40677705 (patch)
tree09259ae7918cad7714be75526dbf0218601905d4
parent065148dd2c176f8cd585bf0bfe957682cb4b4454 (diff)
fltk1.1 1.1.10-25: Fix accidental indep-only buildability regression.debian/1.1.10-25archive/debian/1.1.10-25
debian/rules (override_dh_auto_build-indep): Cover more subdirectories (with or without nodoc in DEB_BUILD_OPTIONS).
-rw-r--r--debian/changelog8
-rwxr-xr-xdebian/rules4
2 files changed, 10 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 4bb99ed..ce2c8cf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+fltk1.1 (1.1.10-25) unstable; urgency=medium
+
+ * debian/rules (override_dh_auto_build-indep): Cover more subdirectories
+ (with or without nodoc in DEB_BUILD_OPTIONS) to fix an accidental
+ regression in indep-only buildability.
+
+ -- Aaron M. Ucko <ucko@debian.org> Mon, 12 Mar 2018 20:59:37 -0400
+
fltk1.1 (1.1.10-24) unstable; urgency=medium
* debian/compat: Advance to 10 (holding off on 11 due to lack of
diff --git a/debian/rules b/debian/rules
index aaed0b0..a1b06f8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -34,9 +34,9 @@ override_dh_auto_build-arch:
override_dh_auto_build-indep:
ifneq "" "$(filter nodoc,$(DEB_BUILD_OPTIONS))"
- dh_auto_build -- $(EXTRA_MFLAGS) DIRS=test
+ dh_auto_build -- $(EXTRA_MFLAGS) DIRS='$$(IMAGEDIRS) src fluid test'
else
- dh_auto_build -- $(EXTRA_MFLAGS) DIRS='test documentation'
+ dh_auto_build -- $(EXTRA_MFLAGS)
$(MAKE) -C documentation fltk.pdf fltk.ps
endif