mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +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>
26 lines
727 B
Makefile
26 lines
727 B
Makefile
#############################################################
|
|
#
|
|
# pkgconfig
|
|
#
|
|
#############################################################
|
|
PKG_CONFIG_VERSION = 0.25
|
|
PKG_CONFIG_SOURCE = pkg-config-$(PKG_CONFIG_VERSION).tar.gz
|
|
PKG_CONFIG_SITE = http://pkgconfig.freedesktop.org/releases/
|
|
|
|
PKG_CONFIG_DEPENDENCIES = libglib2
|
|
|
|
PKG_CONFIG_CONF_OPT = --with-installed-glib
|
|
|
|
HOST_PKG_CONFIG_CONF_OPT = \
|
|
--with-pc-path="$(STAGING_DIR)/usr/lib/pkgconfig:$(STAGING_DIR)/usr/share/pkgconfig" \
|
|
--with-sysroot="$(STAGING_DIR)" \
|
|
--disable-static
|
|
|
|
HOST_PKG_CONFIG_AUTORECONF = YES
|
|
HOST_PKG_CONFIG_DEPENDENCIES =
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|
|
|
|
PKG_CONFIG_HOST_BINARY:=$(HOST_DIR)/usr/bin/pkg-config
|