Skip to content

Commit 2bfe3e7

Browse files
committed
Remove setting the unused variable NINJA in build shell scripts
This variable ended up unused in b89cdef.
1 parent 6c3f283 commit 2bfe3e7

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

build-compiler-rt.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ fi
6868

6969
if command -v ninja >/dev/null; then
7070
CMAKE_GENERATOR="Ninja"
71-
NINJA=1
7271
BUILDCMD=ninja
7372
else
7473
: ${CORES:=$(nproc 2>/dev/null)}

build-libcxx.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ cd runtimes
6262

6363
if command -v ninja >/dev/null; then
6464
CMAKE_GENERATOR="Ninja"
65-
NINJA=1
6665
BUILDCMD=ninja
6766
else
6867
: ${CORES:=$(nproc 2>/dev/null)}

build-lldb-mi.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ fi
5353

5454
if command -v ninja >/dev/null; then
5555
CMAKE_GENERATOR="Ninja"
56-
NINJA=1
5756
BUILDCMD=ninja
5857
else
5958
: ${CORES:=$(nproc 2>/dev/null)}

build-llvm.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ fi
138138

139139
if command -v ninja >/dev/null; then
140140
CMAKE_GENERATOR="Ninja"
141-
NINJA=1
142141
BUILDCMD=ninja
143142
else
144143
: ${CORES:=$(nproc 2>/dev/null)}

build-openmp.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ cd llvm-project/openmp
5252

5353
if command -v ninja >/dev/null; then
5454
CMAKE_GENERATOR="Ninja"
55-
NINJA=1
5655
BUILDCMD=ninja
5756
else
5857
: ${CORES:=$(nproc 2>/dev/null)}

0 commit comments

Comments
 (0)