aboutsummaryrefslogtreecommitdiff
path: root/lib/globals.sh
diff options
context:
space:
mode:
authorRob Savoye <rob.savoye@linaro.org>2013-11-21 17:25:29 -0700
committerRob Savoye <rob.savoye@linaro.org>2013-11-21 17:25:29 -0700
commit73f0595543bcd96a00d9e07cd4eb6c8a430eedd2 (patch)
tree63b3f566f54ed38a0abc5222382e740d7f088beb /lib/globals.sh
parent4fc9a23f6169e5617a87297ab24606dfe7b8117a (diff)
default build,host,target for native
Diffstat (limited to 'lib/globals.sh')
-rw-r--r--lib/globals.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/globals.sh b/lib/globals.sh
index 146f57b4..3a573dbd 100644
--- a/lib/globals.sh
+++ b/lib/globals.sh
@@ -4,9 +4,9 @@
# command line options.
# Start by assuming it's a native build
-build="${BUILDHOST}"
-target=${build}
-host=${target}
+build="${build}"
+host="${build}"
+target="${host}"
gcc="`which gcc`"
host_gcc_version="`${gcc} -v 2>&1 | tail -1`"