aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
575 B
Makefile
20 lines
575 B
Makefile
################################################################################
|
|
#
|
|
# socketcand
|
|
#
|
|
################################################################################
|
|
|
|
SOCKETCAND_VERSION = 274e4e44107f6138a29bbc4e20f9fbd2a7d4dab1
|
|
SOCKETCAND_SITE = $(call github,dschanoeh,socketcand,$(SOCKETCAND_VERSION))
|
|
SOCKETCAND_AUTORECONF = YES
|
|
SOCKETCAND_LICENSE = BSD-3c or GPLv2
|
|
SOCKETCAND_LICENSE_FILES = socketcand.c
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCONFIG),y)
|
|
SOCKETCAND_DEPENDENCIES = libconfig
|
|
else
|
|
SOCKETCAND_CONF_OPTS = --without-config
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|