httping: also pass configuration (SSL/TFO/DEBUG) doing make install
Fixes http://autobuild.buildroot.net/results/144e146ad3223748c4f06f884aeff93e8c0c2de3 When SSL is enabled (which it is by default) an extra source file is built, so ensure the same configuration is used at 'make install' time as during the build step. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
a391d2ed51
commit
7d93f102e1
@ -10,16 +10,17 @@ HTTPING_SITE = http://www.vanheusden.com/httping
|
||||
HTTPING_LICENSE = GPLv2
|
||||
HTTPING_LICENSE_FILES = license.txt
|
||||
HTTPING_DEPENDENCIES = $(if $(BR2_PACKAGE_OPENSSL),openssl)
|
||||
HTTPING_MAKE_OPT = $(TARGET_CONFIGURE_OPTS) \
|
||||
SSL=$(if $(BR2_PACKAGE_OPENSSL),yes,no) \
|
||||
TFO=$(if $(BR2_PACKAGE_HTTPING_TFO),yes,no) \
|
||||
DEBUG=no
|
||||
|
||||
define HTTPING_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
||||
SSL=$(if $(BR2_PACKAGE_OPENSSL),yes,no) \
|
||||
TFO=$(if $(BR2_PACKAGE_HTTPING_TFO),yes,no) \
|
||||
DEBUG=no -C $(@D)
|
||||
$(MAKE) $(HTTPING_MAKE_OPT) -C $(@D)
|
||||
endef
|
||||
|
||||
define HTTPING_INSTALL_TARGET_CMDS
|
||||
$(MAKE) DESTDIR=$(TARGET_DIR) -C $(@D) install
|
||||
$(MAKE) $(HTTPING_MAKE_OPT) DESTDIR=$(TARGET_DIR) -C $(@D) install
|
||||
endef
|
||||
|
||||
define HTTPING_CLEAN_CMDS
|
||||
|
Loading…
Reference in New Issue
Block a user