Browse Source

Use ifneq instead of ifdef for CROSS option

tags/v0.3.13^2
Martin Kroeker GitHub 5 years ago
parent
commit
ebb8788696
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      utest/Makefile

+ 1
- 1
utest/Makefile View File

@@ -45,7 +45,7 @@ $(UTESTBIN): $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ ../$(LIBNAME) $(EXTRALIB) $(FEXTRALIB)

run_test: $(UTESTBIN)
ifndef CROSS
ifneq ($(CROSS), 1)
./$(UTESTBIN)
endif



Loading…
Cancel
Save