aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2014-06-04 23:36:07 +0100
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2014-06-04 23:36:07 +0100
commiteb880258d1c9e076a5693e4f838ca0d19bedb1b6 (patch)
tree17011d8e90632ec454868e0a844a1188eab562fa /configure
parent9e21d8f807bf9599a79c08bb6fc4e2d114980b55 (diff)
Cleanup and fix configure.ac
Remove old hack to detect 32-bit chroots in lue of using linux32. Set topdir to absolute path as it may be used outside of cbuild2 tree (e.g., when setting DEJAGNU variable for "make check" inside build directory). Change-Id: Ibcb3e503c11ddfe98f09528f48be08d1af19cb6a
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 1 insertions, 5 deletions
diff --git a/configure b/configure
index 1b538a4b..d948dfb7 100755
--- a/configure
+++ b/configure
@@ -3074,10 +3074,6 @@ KERNEL="`uname -r`"
BUILDHOST="`${srcdir}/config.guess`"
BUILD_ARCH="`uname -m`"
-if test x"${BUILD_ARCH}" = x"x86_64" -a -f /etc/debian_chroot; then
- BUILD_ARCH=i486
- BUILDHOST="`echo ${BUILDHOST} | sed -e 's:x86_64:i486:'`"
-fi
HOSTNAME="`uname -n`"
@@ -3675,7 +3671,7 @@ fi
-CBUILD_PATH=${srcdir}
+CBUILD_PATH=$(readlink -f ${srcdir})