From e28fe9858530ae5393882f96ac6f39f894f56da7 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 5 Nov 2002 21:06:51 +0000 Subject: Fixup handling of disabled options --- Rules.mak | 2 +- libc/sysdeps/linux/h8300/Makefile | 2 +- libc/sysdeps/linux/m68k/Makefile | 4 ++-- 3 files changed, 4 insertions(+), 4 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 diff --git a/libc/sysdeps/linux/h8300/Makefile b/libc/sysdeps/linux/h8300/Makefile index d6d0b7c2a..d63500a54 100644 --- a/libc/sysdeps/linux/h8300/Makefile +++ b/libc/sysdeps/linux/h8300/Makefile @@ -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 diff --git a/libc/sysdeps/linux/m68k/Makefile b/libc/sysdeps/linux/m68k/Makefile index 7130c58d6..78f1c3f19 100644 --- a/libc/sysdeps/linux/m68k/Makefile +++ b/libc/sysdeps/linux/m68k/Makefile @@ -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 -- cgit v1.2.3