50bda85e88
Similar to the --with-pc-path option. It works just like the existing PKG_CONFIG_SYSROOT_DIR environment variable, but compiled in. The environment variable overrides this default setting if set. This way we don't need to pass PKG_CONFIG_SYSROOT_DIR in the environment when building for the target, and it is easier to reuse pkg-config outside BR (E.G. for the SDK) without having to setup special environment variables. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
25 lines
697 B
Makefile
25 lines
697 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" \
|
|
--with-sysroot="$(STAGING_DIR)" \
|
|
--disable-static
|
|
|
|
HOST_PKG_CONFIG_AUTORECONF = YES
|
|
|
|
$(eval $(call AUTOTARGETS,package,pkg-config))
|
|
$(eval $(call AUTOTARGETS,package,pkg-config,host))
|
|
|
|
PKG_CONFIG_HOST_BINARY:=$(HOST_DIR)/usr/bin/pkg-config
|