diff options
author | Dima Krasner <dima@dimakrasner.com> | 2019-01-23 09:52:04 +0200 |
---|---|---|
committer | Dima Krasner <dima@dimakrasner.com> | 2019-01-23 09:52:04 +0200 |
commit | 2870ffae518798e2f18c110a91a420d65a6e712b (patch) | |
tree | dc1068f97b6db16de787301fdad27a0ab9cf489b /scripts/crosstool-NG.sh | |
parent | 1635c149a4118736e2f0b2901ae4589eea92e194 (diff) | |
download | crosstool-ng-2870ffae518798e2f18c110a91a420d65a6e712b.tar.gz crosstool-ng-2870ffae518798e2f18c110a91a420d65a6e712b.tar.bz2 crosstool-ng-2870ffae518798e2f18c110a91a420d65a6e712b.zip |
Moved uClibc configuration installation to uClibc.sh
Signed-off-by: Dima Krasner <dima@dimakrasner.com>
Diffstat (limited to 'scripts/crosstool-NG.sh')
-rw-r--r-- | scripts/crosstool-NG.sh | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/scripts/crosstool-NG.sh b/scripts/crosstool-NG.sh index 89c9e60e..9804a6c5 100644 --- a/scripts/crosstool-NG.sh +++ b/scripts/crosstool-NG.sh @@ -613,15 +613,7 @@ if [ -z "${CT_RESTART}" ]; then rm -f "${testc}" CT_DoLog EXTRA "Installing user-supplied crosstool-NG configuration" - CT_DoExecLog ALL mkdir -p "${CT_PREFIX_DIR}/bin" - CT_DoExecLog DEBUG ${install} -m 0755 "${CT_LIB_DIR}/scripts/toolchain-config.in" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-ct-ng.config" - CT_DoExecLog DEBUG ${sed} -i -e 's,@@grep@@,"'"${grep}"'",;' "${CT_PREFIX_DIR}/bin/${CT_TARGET}-ct-ng.config" - if [ -n "$CT_LIBC_UCLIBC_CONFIG_FILE" ] - then - ${install} -m 0755 "${CT_PREFIX_DIR}/bin/${CT_TARGET}-ct-ng.config" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-libc.config" - bzip2 -c -9 "$CT_LIBC_UCLIBC_CONFIG_FILE" >>"${CT_PREFIX_DIR}/bin/${CT_TARGET}-libc.config" - fi - bzip2 -c -9 .config >>"${CT_PREFIX_DIR}/bin/${CT_TARGET}-ct-ng.config" + CT_InstallConfigurationFile .config ct-ng CT_DoStep EXTRA "Dumping internal crosstool-NG configuration" CT_DoLog EXTRA "Building a toolchain for:" |