0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-27 15:41:05 +08:00

Problem: debian build fails with automake < 1.14

Solution: create config subdir as a workaround if building the
packages with automake < 1.14
This commit is contained in:
Luca Boccassi 2016-12-28 00:55:17 +01:00
parent ef88b8c760
commit 47c7d8ee50

View File

@ -31,6 +31,9 @@ ifneq (,$(findstring drafts,$(DEB_BUILD_OPTIONS)))
DRAFTS=yes
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:
dh_clean
find $(CURDIR) -type s -exec rm {} \;