diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-07-25 19:04:17 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-07-25 19:04:17 +0200 |
commit | 2f718dd60c19a5d671e7fbef00c67c05ef98c9f4 (patch) | |
tree | 7a4940f84ef5838b66b5290a14bc7f95296fdedc /scripts/functions | |
parent | 4a8daa02e39e234aa03833287fcec3401d9932a4 (diff) | |
download | crosstool-ng-2f718dd60c19a5d671e7fbef00c67c05ef98c9f4.tar.gz crosstool-ng-2f718dd60c19a5d671e7fbef00c67c05ef98c9f4.tar.bz2 crosstool-ng-2f718dd60c19a5d671e7fbef00c67c05ef98c9f4.zip |
complibs: fixup the host complibs install dir
It's easier to have as much as possible stuff in the same place to
ease backup/restore, and make things easier to follow.
Move the host companion libraries install dir as a sub-dir of the
build-tools install dir (but not directly in it, it would break
for canadian or cross-native).
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/functions b/scripts/functions index ad891940..4e236669 100644 --- a/scripts/functions +++ b/scripts/functions @@ -1146,7 +1146,6 @@ CT_DoSaveState() { /^(FUNCNAME|GROUPS|PPID|SHELLOPTS)=/d;' >"${state_dir}/env.sh" CT_DoTarballIfExists "${CT_BUILDTOOLS_PREFIX_DIR}" "${state_dir}/buildtools_dir" - CT_DoTarballIfExists "${CT_COMPLIBS_DIR}" "${state_dir}/complibs_dir" CT_DoTarballIfExists "${CT_CONFIG_DIR}" "${state_dir}/config_dir" CT_DoTarballIfExists "${CT_PREFIX_DIR}" "${state_dir}/prefix_dir" --exclude '*.log' @@ -1179,7 +1178,6 @@ CT_DoLoadState(){ CT_DoExtractTarballIfExists "${state_dir}/prefix_dir" "${CT_PREFIX_DIR}" CT_DoExtractTarballIfExists "${state_dir}/config_dir" "${CT_CONFIG_DIR}" - CT_DoExtractTarballIfExists "${state_dir}/complibs_dir" "${CT_COMPLIBS_DIR}" CT_DoExtractTarballIfExists "${state_dir}/buildtools_dir" "${CT_BUILDTOOLS_PREFIX_DIR}" # Restore the environment, discarding any error message |