summaryrefslogtreecommitdiff
path: root/baserock-bootstrap
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-03-19 10:40:10 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-03-19 10:40:10 +0000
commite522e8d4798dec4092fabaeb89b532e970c3296f (patch)
tree550d84beccfa52c3d8e9efeadadcca7b8161dd2c /baserock-bootstrap
parent1974594d3b5a446b0e431bc814235661542c51e0 (diff)
downloadmorph-e522e8d4798dec4092fabaeb89b532e970c3296f.tar.gz
bootstrap: fix path beginning with //
This strangely breaks python's distutils so setup.py fails. if --prefix is //tree/tools then it ignores --root when it copies the files, however when it later goes to compile the scripts it does use --root so it fails to find the files.
Diffstat (limited to 'baserock-bootstrap')
-rwxr-xr-xbaserock-bootstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/baserock-bootstrap b/baserock-bootstrap
index 7628ccb7..4be587aa 100755
--- a/baserock-bootstrap
+++ b/baserock-bootstrap
@@ -6,7 +6,7 @@ set -u
BASEDIR=$(dirname $(readlink -f $0))
-LFS="$(pwd)/tree"
+LFS="$(pwd)tree"
tools="$LFS/tools"
buildwhat="$1"