Skip to content

Commit 8a6b17f

Browse files
authored
Change ifndefs to ifneq
1 parent 0f863f9 commit 8a6b17f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ctest/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ endif
6161

6262
all1: $(all1targets)
6363

64-
ifndef CROSS
64+
ifneq ($(CROSS), 1)
6565
ifeq ($(USE_OPENMP), 1)
6666
ifeq ($(BUILD_SINGLE),1)
6767
OMP_NUM_THREADS=2 ./xscblat1
@@ -106,7 +106,7 @@ endif
106106

107107
all2: $(all2targets)
108108

109-
ifndef CROSS
109+
ifneq ($(CROSS), 1)
110110
ifeq ($(USE_OPENMP), 1)
111111
ifeq ($(BUILD_SINGLE),1)
112112
OMP_NUM_THREADS=2 ./xscblat2 < sin2
@@ -152,7 +152,7 @@ endif
152152

153153
all3: $(all3targets)
154154

155-
ifndef CROSS
155+
ifneq ($(CROSS), 1)
156156
ifeq ($(USE_OPENMP), 1)
157157
ifeq ($(BUILD_SINGLE),1)
158158
OMP_NUM_THREADS=2 ./xscblat3 < sin3

0 commit comments

Comments
 (0)