Skip to content

Commit ebb8788

Browse files
authored
Use ifneq instead of ifdef for CROSS option
1 parent 857afcc commit ebb8788

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utest/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ $(UTESTBIN): $(OBJS)
4545
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ ../$(LIBNAME) $(EXTRALIB) $(FEXTRALIB)
4646

4747
run_test: $(UTESTBIN)
48-
ifndef CROSS
48+
ifneq ($(CROSS), 1)
4949
./$(UTESTBIN)
5050
endif
5151

0 commit comments

Comments
 (0)