diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-29 19:10:26 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-29 19:10:26 +0000 |
commit | 6099e286e2b254517bb8ec63cad5131b1dc9539b (patch) | |
tree | dc928c090b28cfaac1c2dea3a37fbd047b837767 | |
parent | fb56c53e3938c6a2911b4bb22b82219aa5943dce (diff) |
package: proper aclocal fix
Revert r25827 and instead copy over the host aclocal files of the stuff
needed for auto* (libtool + pkgconfig). These logically belong with the
target stuff, as they are used for the target auto* toolchain.
Long term we should probably consider using
aclocal --acdir=$(STAGING_DIR)/usr/share/aclocal, so the host .m4 files
cannot interfere with the target build.
-rw-r--r-- | package/automake/automake.mk | 3 | ||||
-rw-r--r-- | package/libtool/libtool.mk | 4 | ||||
-rw-r--r-- | package/pkgconfig/pkgconfig.mk | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/package/automake/automake.mk b/package/automake/automake.mk index d65cd2338..6b87caa92 100644 --- a/package/automake/automake.mk +++ b/package/automake/automake.mk @@ -20,7 +20,7 @@ AUTOMAKE_HOST_DIR:=$(BUILD_DIR)/automake-$(AUTOMAKE_VERSION)-host # variables used by other packages AUTOMAKE:=$(HOST_DIR)/usr/bin/automake -ACLOCAL_DIR = $(HOST_DIR)/usr/share/aclocal +ACLOCAL_DIR = $(STAGING_DIR)/usr/share/aclocal ACLOCAL = $(HOST_DIR)/usr/bin/aclocal -I $(ACLOCAL_DIR) $(DL_DIR)/$(AUTOMAKE_SOURCE): @@ -51,6 +51,7 @@ $(STAMP_DIR)/host_automake_compiled: $(STAMP_DIR)/host_automake_configured $(STAMP_DIR)/host_automake_installed: $(STAMP_DIR)/host_automake_compiled $(MAKE) -C $(AUTOMAKE_HOST_DIR) install + mkdir -p $(STAGING_DIR)/usr/share/aclocal touch $@ host-automake: $(STAMP_DIR)/host_automake_installed diff --git a/package/libtool/libtool.mk b/package/libtool/libtool.mk index a649a7435..1f56fdd3b 100644 --- a/package/libtool/libtool.mk +++ b/package/libtool/libtool.mk @@ -49,6 +49,10 @@ $(STAMP_DIR)/host_libtool_compiled: $(STAMP_DIR)/host_libtool_configured $(STAMP_DIR)/host_libtool_installed: $(STAMP_DIR)/host_libtool_compiled $(MAKE) -C $(LIBTOOL_HOST_DIR) install + install -D -m 0644 $(HOST_DIR)/usr/share/aclocal/libtool.m4 \ + $(STAGING_DIR)/usr/share/aclocal/libtool.m4 + install -D -m 0644 $(HOST_DIR)/usr/share/aclocal/ltdl.m4 \ + $(STAGING_DIR)/usr/share/aclocal/ltdl.m4 touch $@ host-libtool: $(STAMP_DIR)/host_libtool_installed diff --git a/package/pkgconfig/pkgconfig.mk b/package/pkgconfig/pkgconfig.mk index 7310aae50..34df01761 100644 --- a/package/pkgconfig/pkgconfig.mk +++ b/package/pkgconfig/pkgconfig.mk @@ -50,6 +50,8 @@ $(STAMP_DIR)/host_pkgconfig_compiled: $(STAMP_DIR)/host_pkgconfig_configured $(STAMP_DIR)/host_pkgconfig_installed: $(STAMP_DIR)/host_pkgconfig_compiled $(MAKE) -C $(PKG_CONFIG_HOST_DIR) install + install -D -m 0644 $(HOST_DIR)/usr/share/aclocal/pkg.m4 \ + $(STAGING_DIR)/usr/share/aclocal/pkg.m4 touch $@ host-pkgconfig: $(STAMP_DIR)/host_pkgconfig_installed |