diff options
author | Alexey Neyman <stilor@att.net> | 2018-09-27 01:01:20 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-09-27 01:01:20 -0700 |
commit | 2acab2f06197ab34243fc415020ead54d4a9e505 (patch) | |
tree | ddced0552dd95e0e75007e7cea3e824ea4228e0c /config/global | |
parent | d573c1575825de8c47aaeca89db54226ff702924 (diff) | |
download | crosstool-ng-2acab2f06197ab34243fc415020ead54d4a9e505.tar.gz crosstool-ng-2acab2f06197ab34243fc415020ead54d4a9e505.tar.bz2 crosstool-ng-2acab2f06197ab34243fc415020ead54d4a9e505.zip |
Make CT_PREFIX_DIR/CT_WORK_DIR/CT_BUILD_TOP_DIR absolute
... if they aren't already.
Fixes #1010.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/global')
-rw-r--r-- | config/global/paths.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/global/paths.in b/config/global/paths.in index 39e15f35..b4e93ee0 100644 --- a/config/global/paths.in +++ b/config/global/paths.in @@ -42,7 +42,7 @@ config WORK_DIR config BUILD_TOP_DIR string - default "${CT_WORK_DIR}/${CT_HOST:+HOST-${CT_HOST}/}${CT_TARGET}" + default "${CT_WORK_DIR:-${CT_TOP_DIR}/.build}/${CT_HOST:+HOST-${CT_HOST}/}${CT_TARGET}" config PREFIX_DIR string |