diff options
author | Dima Krasner <dima@dimakrasner.com> | 2019-01-23 09:56:05 +0200 |
---|---|---|
committer | Dima Krasner <dima@dimakrasner.com> | 2019-01-23 09:56:05 +0200 |
commit | de797aa99d7b380cdef6c0146ae4cc68d10e089d (patch) | |
tree | 8514dfe42c97432b2a0b51485a6f1dca7e12cd06 /scripts/functions | |
parent | d44a62696841c772dc1164b1055b016e0073a301 (diff) | |
download | crosstool-ng-de797aa99d7b380cdef6c0146ae4cc68d10e089d.tar.gz crosstool-ng-de797aa99d7b380cdef6c0146ae4cc68d10e089d.tar.bz2 crosstool-ng-de797aa99d7b380cdef6c0146ae4cc68d10e089d.zip |
Coding style fixes in functions
Signed-off-by: Dima Krasner <dima@dimakrasner.com>
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/functions b/scripts/functions index 877426b7..618298ae 100644 --- a/scripts/functions +++ b/scripts/functions @@ -2460,7 +2460,7 @@ CT_InstallConfigurationFile() local suffix="${2}" 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}-$suffix.config" - CT_DoExecLog DEBUG ${sed} -i -e 's,@@grep@@,"'"${grep}"'",;' "${CT_PREFIX_DIR}/bin/${CT_TARGET}-$suffix.config" - bzip2 -c -9 "$1" >>"${CT_PREFIX_DIR}/bin/${CT_TARGET}-$suffix.config" + CT_DoExecLog DEBUG ${install} -m 0755 "${CT_LIB_DIR}/scripts/toolchain-config.in" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-${suffix}.config" + CT_DoExecLog DEBUG ${sed} -i -e 's,@@grep@@,"'"${grep}"'",;' "${CT_PREFIX_DIR}/bin/${CT_TARGET}-${suffix}.config" + bzip2 -c -9 "${path}" >>"${CT_PREFIX_DIR}/bin/${CT_TARGET}-${suffix}.config" } |