summaryrefslogtreecommitdiff
path: root/scripts/showTuple.sh.in
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2016-12-14 06:18:50 (GMT)
committerAlexey Neyman <stilor@att.net>2017-01-20 02:08:29 (GMT)
commitc0cc73cd6f3040ea08dc09384aa289540b3fb2a2 (patch)
tree415dbea164535bf79bea8414a8548b23430e49e9 /scripts/showTuple.sh.in
parentdc3f68c8a5501fd745d079d724da389ea05566f8 (diff)
Install canadian crosses into a separate subdir.
Makes them sorted out by host, and removes the need for similar hack in samples.mk. Change how canadian crosses are named: using `=' character resulted in Glibc build failure. Move loading config into a common function, CT_LoadConfig. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/showTuple.sh.in')
-rw-r--r--scripts/showTuple.sh.in30
1 files changed, 0 insertions, 30 deletions
diff --git a/scripts/showTuple.sh.in b/scripts/showTuple.sh.in
deleted file mode 100644
index 5389539..0000000
--- a/scripts/showTuple.sh.in
+++ /dev/null
@@ -1,30 +0,0 @@
-#!@@CT_bash@@
-
-# What we need:
-# - the .config file
-
-# Parse the tools' paths configuration
-. "${CT_LIB_DIR}/paths.sh"
-
-# We'll need the stdout later, save it
-exec 9>&1
-
-# Parse the common functions
-. "${CT_LIB_DIR}/scripts/functions"
-
-# Don't care about any log file
-exec >/dev/null
-rm -f "${tmp_log_file}"
-
-# Parse the configuration file
-. .config.2
-
-# Parse architecture and kernel specific functions
-. "${CT_LIB_DIR}/scripts/build/arch/${CT_ARCH}.sh"
-. "${CT_LIB_DIR}/scripts/build/kernel/${CT_KERNEL}.sh"
-
-# Build CT_TARGET
-CT_DoBuildTargetTuple
-
-# All this for this single echo... :-( Sigh, I'll have to re-arrange things...
-echo "${CT_TARGET}" >&9