ed42aab337
xinetd's configure does not set up an AR variable, and there are no libtool files to autoreconfigure. So instead, lets pass in AR during the build. Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
17 lines
401 B
Makefile
17 lines
401 B
Makefile
#############################################################
|
|
#
|
|
# xinetd
|
|
#
|
|
#############################################################
|
|
XINETD_VERSION = 2.3.15
|
|
XINETD_SOURCE = xinetd-$(XINETD_VERSION).tar.gz
|
|
XINETD_SITE = http://www.xinetd.org
|
|
|
|
ifneq ($(BR2_INET_RPC),y)
|
|
XINETD_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -DNO_RPC"
|
|
endif
|
|
|
|
XINETD_MAKE_OPT = AR="$(TARGET_AR)"
|
|
|
|
$(eval $(call AUTOTARGETS))
|