summaryrefslogtreecommitdiff
path: root/elements/gnu-toolchain/stage2-gcc.bst
diff options
context:
space:
mode:
authorFrancisco Redondo Marchena <francisco.marchena@codethink.co.uk>2018-06-04 13:40:13 +0100
committerFrancisco Redondo Marchena <francisco.marchena@codethink.co.uk>2018-06-04 13:51:31 +0100
commit45bb922afeaae26ef5d4e0ee329c678485063c45 (patch)
tree7abcdd995185e973b5e220f42b01aadaac8ea723 /elements/gnu-toolchain/stage2-gcc.bst
parenteea23f6a325956d17ae35eaeefc67a5f3e5f6a85 (diff)
downloaddefinitions-45bb922afeaae26ef5d4e0ee329c678485063c45.tar.gz
Set up/Hard code STAGE2_SYSROOT to the root directory instead of calculating it depending on the current directory because buildstream has changed the default value of "build-root" directory and this was causing issues in the stage2 packages. See https://gitlab.com/BuildStream/buildstream/issues/414 for more information. Bump also the SHA of bst-external to fcd1fc365d0250bffe02937c89dcc31d11c299cf
Diffstat (limited to 'elements/gnu-toolchain/stage2-gcc.bst')
-rw-r--r--elements/gnu-toolchain/stage2-gcc.bst4
1 files changed, 2 insertions, 2 deletions
diff --git a/elements/gnu-toolchain/stage2-gcc.bst b/elements/gnu-toolchain/stage2-gcc.bst
index a7c879e3..5751631a 100644
--- a/elements/gnu-toolchain/stage2-gcc.bst
+++ b/elements/gnu-toolchain/stage2-gcc.bst
@@ -64,7 +64,7 @@ config:
# 4. This flag causes the correct --sysroot flag to be passed when
# calling stage 1 GCC.
- |
- export STAGE2_SYSROOT="$(dirname $(dirname $(pwd)))"
+ export STAGE2_SYSROOT="/"
export CC="%{target-stage1}-gcc --sysroot=$STAGE2_SYSROOT"
export CXX="%{target-stage1}-g++ --sysroot=$STAGE2_SYSROOT"
export AR="%{target-stage1}-ar"
@@ -86,7 +86,7 @@ config:
build-commands:
- |
- export STAGE2_SYSROOT="$(dirname $(dirname $(pwd)))"
+ export STAGE2_SYSROOT="/"
cd o && make
install-commands: