Commit 47c7d8ee authored by Luca Boccassi's avatar Luca Boccassi

Problem: debian build fails with automake < 1.14

Solution: create config subdir as a workaround if building the
packages with automake < 1.14
parent ef88b8c7
...@@ -31,6 +31,9 @@ ifneq (,$(findstring drafts,$(DEB_BUILD_OPTIONS))) ...@@ -31,6 +31,9 @@ ifneq (,$(findstring drafts,$(DEB_BUILD_OPTIONS)))
DRAFTS=yes DRAFTS=yes
endif endif
# Workaround for automake < 1.14 bug
$(shell dpkg --compare-versions `dpkg-query -W -f='$${Version}\n' automake` lt 1:1.14 && mkdir -p config)
override_dh_clean: override_dh_clean:
dh_clean dh_clean
find $(CURDIR) -type s -exec rm {} \; find $(CURDIR) -type s -exec rm {} \;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment