summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-11-05 21:06:51 +0000
committerEric Andersen <andersen@codepoet.org>2002-11-05 21:06:51 +0000
commite28fe9858530ae5393882f96ac6f39f894f56da7 (patch)
treeb14bf9808074a4cd18bb388b360a86a672296b54 /Rules.mak
parent6e8f649c6e4b45ad56ed5d05fc6721b9646e5d0e (diff)
Fixup handling of disabled options
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rules.mak b/Rules.mak
index 7051d839c..d9d99a679 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -172,7 +172,7 @@ endif
ifeq ($(strip $(DOPIC)),y)
CFLAGS += -fPIC
endif
-ifeq ($(strip $(HAS_FPU)),n)
+ifneq ($(strip $(HAS_FPU)),y)
CFLAGS += -msoft-float
endif