OSDN Git Service

Fixup handling of disabled options
authorEric Andersen <andersen@codepoet.org>
Tue, 5 Nov 2002 21:06:51 +0000 (21:06 -0000)
committerEric Andersen <andersen@codepoet.org>
Tue, 5 Nov 2002 21:06:51 +0000 (21:06 -0000)
Rules.mak
libc/sysdeps/linux/h8300/Makefile
libc/sysdeps/linux/m68k/Makefile

index 7051d83..d9d99a6 100644 (file)
--- 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
 
index d6d0b7c..d63500a 100644 (file)
@@ -63,7 +63,7 @@ headers:
 
 clean:
        rm -f *.[oa] *~ core
-ifeq ($(strip $(HAVE_ELF)),n)
+ifneq ($(strip $(HAVE_ELF)),y)
        rm -f $(TOPDIR)/include/float.h
 endif
 
index 7130c58..78f1c3f 100644 (file)
@@ -71,7 +71,7 @@ $(COBJS): %.o : %.c
        $(STRIPTOOL) -x -R .note -R .comment $*.o
 
 headers:
-ifeq ($(strip $(HAVE_ELF)),n)
+ifneq ($(strip $(HAVE_ELF)),y)
        echo "Working around compiler bug in the m68k-pic-coff toolchain"
        cd $(TOPDIR)/include && ln -fs ../libc/sysdeps/linux/m68k/float.h .
 endif
@@ -80,7 +80,7 @@ endif
 clean:
        rm -f *.[oa] *~ core
        rm -f bits/sysnum.h
-ifeq ($(strip $(HAVE_ELF)),n)
+ifneq ($(strip $(HAVE_ELF)),y)
        rm -f $(TOPDIR)/include/float.h
 endif