mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
The parameter to disable asciidoc documentation generation changed from
'fmq_have_asciidoc' to 'filemq_have_asciidoc'.
Fixes [1], [2], [3]:
File "/usr/bin/asciidoc", line 101
except KeyError, k: raise AttributeError, k
^
SyntaxError: invalid syntax
[1] http://autobuild.buildroot.net/results/5f0/5f0558235756419eff15b8e909b5d630712f5141
[2] http://autobuild.buildroot.net/results/a23/a23d92b09dadc12b3753c951900e28fc19bd14cd
[3] http://autobuild.buildroot.net/results/a45/a450ff5c6008ccf290a028e6eab7ff26369243e7
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
665 B
Makefile
24 lines
665 B
Makefile
################################################################################
|
|
#
|
|
# filemq
|
|
#
|
|
################################################################################
|
|
|
|
FILEMQ_VERSION = e59951489045825d6fc5bdc6a5a5ecf1abf51943
|
|
FILEMQ_SITE = $(call github,zeromq,filemq,$(FILEMQ_VERSION))
|
|
|
|
FILEMQ_AUTORECONF = YES
|
|
FILEMQ_CONF_ENV = filemq_have_asciidoc=no
|
|
FILEMQ_INSTALL_STAGING = YES
|
|
FILEMQ_DEPENDENCIES = czmq openssl zeromq
|
|
FILEMQ_LICENSE = LGPLv3+ with exceptions
|
|
FILEMQ_LICENSE_FILES = COPYING COPYING.LESSER
|
|
|
|
define FILEMQ_CREATE_CONFIG_DIR
|
|
mkdir -p $(@D)/config
|
|
endef
|
|
|
|
FILEMQ_POST_PATCH_HOOKS += FILEMQ_CREATE_CONFIG_DIR
|
|
|
|
$(eval $(autotools-package))
|