diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-07-18 11:18:37 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-07-18 11:18:37 +0000 |
commit | 61b763d414aee61d16bc29f29670f1ac2f425422 (patch) | |
tree | a9172b8c080f2205a21a7857cfc091806f63d392 /include | |
parent | de904cbdf823eee0b9e05a511e59adbf3a1da47c (diff) | |
download | upstream-61b763d414aee61d16bc29f29670f1ac2f425422.tar.gz upstream-61b763d414aee61d16bc29f29670f1ac2f425422.tar.bz2 upstream-61b763d414aee61d16bc29f29670f1ac2f425422.zip |
build: add required exports for dependency tracking
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37387 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/package-ipkg.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index 73fed05b17..696de156cf 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -54,7 +54,10 @@ ifneq ($(PKG_NAME),toolchain) @( \ rm -f $(PKG_INFO_DIR)/$(1).missing; \ ( \ - export READELF=$(TARGET_CROSS)readelf XARGS="$(XARGS)"; \ + export \ + READELF=$(TARGET_CROSS)readelf \ + OBJCOPY=$(TARGET_CROSS)objcopy \ + XARGS="$(XARGS)"; \ $(SCRIPT_DIR)/gen-dependencies.sh "$$(IDIR_$(1))"; \ ) | while read FILE; do \ grep -q "$$$$FILE" $(PKG_INFO_DIR)/$(1).provides || \ |