Skip to content

Commit b1a823b

Browse files
committed
build-kvx-xgcc.sh: now call configure with absolute path
1 parent 56e632b commit b1a823b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build-kvx-xgcc.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ git_clone https://github.com/kalray/gcc.git "${SHA1_GCC}" coolidge
5353

5454
mkdir -p build-binutils
5555
pushd build-binutils
56-
../binutils/configure \
56+
$PWD/../binutils/configure \
5757
--prefix="$PREFIX" \
5858
--target="$TARGET" \
5959
--disable-initfini-array \
@@ -80,7 +80,7 @@ popd
8080

8181
mkdir -p build-gcc
8282
pushd build-gcc
83-
../gcc/configure \
83+
$PWD/../gcc/configure \
8484
--prefix="$PREFIX" \
8585
--target="$TARGET" \
8686
--with-gnu-as \
@@ -105,7 +105,7 @@ popd
105105

106106
mkdir -p build-newlib
107107
pushd build-newlib
108-
../newlib/configure \
108+
$PWD/../newlib/configure \
109109
--target="$TARGET" \
110110
--prefix="$PREFIX" \
111111
--enable-multilib \

0 commit comments

Comments
 (0)