Skip to content

Commit 52c7016

Browse files
committed
[DEBUG] Fixed environment variables typos
1 parent e7353d2 commit 52c7016

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: build-scripts/CI/CIBB_32b

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ if [ ! -d "glibc-$GLIBC_VERSION" ]; then
190190
cd glibc-$GLIBC_VERSION || exit
191191
mkdir -p build
192192
# apply critical patch if Glibc 2.31 and GCC 10 series are being built
193-
if [[ "$GCCBASE_VERSION" =~ ^10.* ]] && [ "$GLIBC_VERSION" = "2.31" ]; then
193+
if [[ "$GCC_VERSION" =~ ^10.* ]] && [ "$GLIBC_VERSION" = "2.31" ]; then
194194
echo "Applying patch!"
195195
curl -o Makefile.patch https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/master/patches/Makefile.patch
196196
mv Makefile.patch math/Makefile

Diff for: build-scripts/CI/CIBB_64b

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ if [ ! -d "glibc-$GLIBC_VERSION" ]; then
171171
cd glibc-$GLIBC_VERSION || exit
172172
mkdir -p build
173173
# apply critical patch if Glibc 2.31 and GCC 10 series are being built
174-
if [[ "$GCCBASE_VERSION" =~ ^10.* ]] && [ "$GLIBC_VERSION" = "2.31" ]; then
174+
if [[ "$GCC_VERSION" =~ ^10.* ]] && [ "$GLIBC_VERSION" = "2.31" ]; then
175175
echo "Applying patch!"
176176
curl -o Makefile.patch https://raw.githubusercontent.com/abhiTronix/raspberry-pi-cross-compilers/master/patches/Makefile.patch
177177
mv Makefile.patch math/Makefile

0 commit comments

Comments
 (0)