mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-08 02:09:48 +03:00
Also remove the redundant $(call ...).
This is a purely mechanical change, performed with
find package linux toolchain boot -name \*.mk | \
xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \
-e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \
-e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 lines
438 B
Makefile
15 lines
438 B
Makefile
#############################################################
|
|
#
|
|
# libdaemon (UNIX daemon library)
|
|
#
|
|
#############################################################
|
|
|
|
LIBDAEMON_VERSION = 0.14
|
|
LIBDAEMON_SITE = http://0pointer.de/lennart/projects/libdaemon
|
|
LIBDAEMON_INSTALL_STAGING = YES
|
|
LIBDAEMON_CONF_ENV = ac_cv_func_setpgrp_void=no
|
|
LIBDAEMON_CONF_OPT = --disable-lynx
|
|
LIBDAEMON_DEPENDENCIES = host-pkg-config
|
|
|
|
$(eval $(autotools-package))
|