summaryrefslogtreecommitdiff
path: root/openwrt/toolchain/libnotimpl
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2006-08-04 09:14:20 +0000
committerMike Baker <mbm@openwrt.org>2006-08-04 09:14:20 +0000
commit20922bcde7a20037c761104f81a901f97dd82e18 (patch)
tree183e534ced13bf3afe8767403ace06d1eaac4d12 /openwrt/toolchain/libnotimpl
parent1dee38a88eb0b1189c910a1a2d466834cc4a2f14 (diff)
downloadmtk-20170518-20922bcde7a20037c761104f81a901f97dd82e18.zip
mtk-20170518-20922bcde7a20037c761104f81a901f97dd82e18.tar.gz
mtk-20170518-20922bcde7a20037c761104f81a901f97dd82e18.tar.bz2
fix everything I broke with the previous patches
SVN-Revision: 4436
Diffstat (limited to 'openwrt/toolchain/libnotimpl')
-rw-r--r--openwrt/toolchain/libnotimpl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/toolchain/libnotimpl/Makefile b/openwrt/toolchain/libnotimpl/Makefile
index bc515ca..214f51c 100644
--- a/openwrt/toolchain/libnotimpl/Makefile
+++ b/openwrt/toolchain/libnotimpl/Makefile
@@ -12,7 +12,7 @@ PKG_BUILD_DIR := $(TOOL_BUILD_DIR)/libnotimpl
include $(INCLUDE_DIR)/host-build.mk
define cc
- $(TARGET_CC) $(TARGET_CFLAGS) -c src/$(1).c -o $(PKG_BUILD_DIR)/$(1).o
+ PATH="$(TARGET_PATH)" $(TARGET_CC) $(TARGET_CFLAGS) -c src/$(1).c -o $(PKG_BUILD_DIR)/$(1).o
endef
define Build/Prepare
@@ -22,7 +22,7 @@ endef
define Build/Compile
$(call cc,math)
- $(TARGET_CROSS)ar rc $(PKG_BUILD_DIR)/libnotimpl.a $(PKG_BUILD_DIR)/*.o
+ PATH="$(TARGET_PATH)" $(TARGET_CROSS)ar rc $(PKG_BUILD_DIR)/libnotimpl.a $(PKG_BUILD_DIR)/*.o
endef
define Build/Install