diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-08-24 19:35:47 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-08-24 19:35:47 +0000 |
commit | e16425c389e27373fd7b3acaaf0b5cdde1cb9917 (patch) | |
tree | 036b63d7d23ae9704d23b62c6d3f20a0c9415a8c /package | |
parent | 4b53879123f417c7fb73e34183ce33b288b2750f (diff) | |
download | buildroot-novena-e16425c389e27373fd7b3acaaf0b5cdde1cb9917.tar.gz buildroot-novena-e16425c389e27373fd7b3acaaf0b5cdde1cb9917.zip |
- pickup the PATH the user has set.
Fixes HOSTCC et al being installed in e.g. /opt where it wasn't found before.
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index a3dd9c59f..234688298 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -44,7 +44,7 @@ GNU_TARGET_SUFFIX:=-$(strip $(subst ",, $(BR2_GNU_TARGET_SUFFIX))) # Strip off the annoying quoting STAGING_DIR:=$(strip $(subst ",, $(BR2_STAGING_DIR))) #" -TARGET_PATH=$(STAGING_DIR)/bin:$(TOOL_BUILD_DIR)/bin:/bin:/sbin:/usr/bin:/usr/sbin +TARGET_PATH=$(STAGING_DIR)/bin:$(TOOL_BUILD_DIR)/bin:/bin:/sbin:/usr/bin:/usr/sbin:$(PATH) IMAGE:=$(BASE_DIR)/rootfs.$(ARCH)$(ARCH_FPU_SUFFIX) REAL_GNU_TARGET_NAME=$(OPTIMIZE_FOR_CPU)$(GNU_TARGET_SUFFIX) GNU_TARGET_NAME=$(OPTIMIZE_FOR_CPU)-linux |