aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/functions7
-rw-r--r--scripts/toolchain-config.in4
2 files changed, 3 insertions, 8 deletions
diff --git a/scripts/functions b/scripts/functions
index c0365eae..9ee0391b 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -2539,8 +2539,7 @@ CT_InstallConfigurationFile()
local path="${1}"
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 "${path}" >>"${CT_PREFIX_DIR}/bin/${CT_TARGET}-${suffix}.config"
+ CT_DoExecLog ALL mkdir -p "${CT_PREFIX_DIR}/share"
+ CT_DoExecLog DEBUG ${install} -m 0644 "${path}" "${CT_PREFIX_DIR}/share/${CT_TARGET}-${suffix}.config"
+ CT_DoExecLog DEBUG bzip2 -9 "${CT_PREFIX_DIR}/share/${CT_TARGET}-${suffix}.config"
}
diff --git a/scripts/toolchain-config.in b/scripts/toolchain-config.in
deleted file mode 100644
index 14549bc3..00000000
--- a/scripts/toolchain-config.in
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-tail -n+5 "${0}" |bzcat
-exit 0