diff options
author | Mike Baker <mbm@openwrt.org> | 2006-08-04 09:14:20 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2006-08-04 09:14:20 +0000 |
commit | 834f9176191f8a245cd1bc856e37f99e94b47f6f (patch) | |
tree | 01d7795a5a4f775f07954784496c37d2091ed565 /toolchain/libnotimpl/Makefile | |
parent | a4a9ba8874ca977095ae4314253c5ae3420f270a (diff) | |
download | upstream-834f9176191f8a245cd1bc856e37f99e94b47f6f.tar.gz upstream-834f9176191f8a245cd1bc856e37f99e94b47f6f.tar.bz2 upstream-834f9176191f8a245cd1bc856e37f99e94b47f6f.zip |
fix everything I broke with the previous patches
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4436 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/libnotimpl/Makefile')
-rw-r--r-- | toolchain/libnotimpl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/libnotimpl/Makefile b/toolchain/libnotimpl/Makefile index bc515ca080..214f51c5dc 100644 --- a/toolchain/libnotimpl/Makefile +++ b/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 |