diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-02-12 09:10:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-02-12 09:10:22 +0000 |
commit | d108fa86c933dbf2d33bd622a017b134fc524c27 (patch) | |
tree | 5a793b03693be0cc7c0395291e16676049d6ad0d | |
parent | d322f37644811964ee7da64c4d3fcffd8898869f (diff) | |
download | buildroot-novena-d108fa86c933dbf2d33bd622a017b134fc524c27.tar.gz buildroot-novena-d108fa86c933dbf2d33bd622a017b134fc524c27.zip |
Fixup the target path
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -145,9 +145,10 @@ PATCH_DIR=$(SOURCE_DIR)/patches BUILD_DIR:=$(BASE_DIR)/build TARGET_DIR:=$(BUILD_DIR)/root STAGING_DIR:=$(BUILD_DIR)/staging_dir -TARGET_CROSS:=$(STAGING_DIR)/bin/$(ARCH)-uclibc- -TARGET_CC:=$(TARGET_CROSS)gcc -TARGET_PATH:=$(STAGING_DIR)/bin:$(STAGING_DIR)/usr/bin:/bin:/sbin:/usr/bin:/usr/sbin +TOOL_BUILD_DIR=$(BASE_DIR)/build +TARGET_PATH=$(STAGING_DIR)/bin:$(STAGING_DIR)/usr/bin:/bin:/sbin:/usr/bin:/usr/sbin +TARGET_CROSS=$(STAGING_DIR)/bin/$(ARCH)-uclibc- +TARGET_CC=$(TARGET_CROSS)gcc STRIP:=$(TARGET_CROSS)strip --remove-section=.comment --remove-section=.note #STRIP:=/bin/true IMAGE:=$(BASE_DIR)/root_fs |