diff options
author | Alexey Neyman <stilor@att.net> | 2018-04-07 14:39:56 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-07 14:39:56 -0700 |
commit | 4e7d0906c1047516ab6517e3abd4a83cba98139d (patch) | |
tree | e3ca3eb2ac3d5590ae95724ae5e5a21cac174247 /scripts/crosstool-NG.sh | |
parent | 7eb903667b59ac00d28e2ebad26e4b8c56bb0b84 (diff) | |
download | crosstool-ng-4e7d0906c1047516ab6517e3abd4a83cba98139d.tar.gz crosstool-ng-4e7d0906c1047516ab6517e3abd4a83cba98139d.tar.bz2 crosstool-ng-4e7d0906c1047516ab6517e3abd4a83cba98139d.zip |
Support out-of-tree local builds
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/crosstool-NG.sh')
-rw-r--r-- | scripts/crosstool-NG.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/crosstool-NG.sh b/scripts/crosstool-NG.sh index 4d79e485..d4414b59 100644 --- a/scripts/crosstool-NG.sh +++ b/scripts/crosstool-NG.sh @@ -111,7 +111,7 @@ CT_TestOrAbort "The CONFIG_SHELL '${CT_CONFIG_SHELL}' is not valid" -f "${CT_CON CT_TOOLS_OVERRIDE_DIR="${CT_WORK_DIR}/tools" CT_DoLog DEBUG "Creating bin-override for tools in '${CT_TOOLS_OVERRIDE_DIR}'" CT_DoExecLog DEBUG mkdir -p "${CT_TOOLS_OVERRIDE_DIR}/bin" -cat "${CT_LIB_DIR}/paths.sh" |while read trash line; do +cat "${paths_sh_location}" |while read trash line; do tool="${line%%=*}" # Suppress extra quoting eval path=${line#*=} |