diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-04-22 22:05:55 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-04-22 22:05:55 +0000 |
commit | 3195be7429507967adf0a495df28bc0d2618d1b1 (patch) | |
tree | 87557961215529ecd3a03b6908eb418be99df362 /include/host-build.mk | |
parent | d91cdc629196db4c044e06040ba54d59427b6c03 (diff) | |
download | upstream-3195be7429507967adf0a495df28bc0d2618d1b1.tar.gz upstream-3195be7429507967adf0a495df28bc0d2618d1b1.tar.bz2 upstream-3195be7429507967adf0a495df28bc0d2618d1b1.zip |
clean up automake/pkg-config handling, move separate host/package variable exports to templates, fix automake path for host builds
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15339 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/host-build.mk')
-rw-r--r-- | include/host-build.mk | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/include/host-build.mk b/include/host-build.mk index 1a794846bb..af46c3e245 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -103,6 +103,14 @@ define Download/default MD5SUM:=$(PKG_MD5SUM) endef +define Host/Exports/Default + $(1) : export ACLOCAL_INCLUDE=$$(foreach p,$$(wildcard $$(STAGING_DIR_HOST)/share/aclocal $$(STAGING_DIR_HOST)/share/aclocal-*),-I $$(p)) + $(1) : export STAGING_PREFIX=$$(STAGING_DIR_HOST) + $(1) : export PKG_CONFIG_PATH=$$(STAGING_DIR_HOST)/lib/pkgconfig + $(1) : export PKG_CONFIG_LIBDIR=$$(STAGING_DIR_HOST)/lib/pkgconfig +endef +Host/Exports=$(Host/Exports/Default) + ifndef DUMP define HostBuild $(if $(HOST_QUILT),$(Host/Quilt)) @@ -115,12 +123,12 @@ ifndef DUMP $(call Host/Prepare) touch $$@ - $(HOST_STAMP_CONFIGURED) : export PKG_CONFIG_PATH=$$(STAGING_DIR_HOST)/lib/pkgconfig - $(HOST_STAMP_CONFIGURED) : export PKG_CONFIG_LIBDIR=$$(STAGING_DIR_HOST)/lib/pkgconfig + $(call Host/Exports,$(STAMP_CONFIGURED)) $(HOST_STAMP_CONFIGURED): $(HOST_STAMP_PREPARED) $(call Host/Configure) touch $$@ + $(call Host/Exports,$(STAMP_BUILT)) $(HOST_STAMP_BUILT): $(HOST_STAMP_CONFIGURED) $(call Host/Compile) touch $$@ |