diff options
author | jb <jb@FreeBSD.org> | 1998-09-05 08:35:53 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-09-05 08:35:53 +0000 |
commit | b1cb75a632e6de0e89c49331efb8268888eec4cd (patch) | |
tree | dc218a6fb45fe067b5d2e243fe6e0cbab5686686 /lib | |
parent | 9e041297f21908563b5a5d7fdcb37fed7078971b (diff) | |
download | FreeBSD-src-b1cb75a632e6de0e89c49331efb8268888eec4cd.zip FreeBSD-src-b1cb75a632e6de0e89c49331efb8268888eec4cd.tar.gz |
Change MACHINE to MACHINE_ARCH when testing for i386 to support
MACHINE=pc98.
There are a lot unsupported machines here.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libm/Makefile b/lib/libm/Makefile index 7863229..dc05cfc 100644 --- a/lib/libm/Makefile +++ b/lib/libm/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/4/93 -# $Id$ +# $Id: Makefile,v 1.5 1997/02/22 15:07:03 peter Exp $ # # ieee - for most IEEE machines, we hope. # mc68881 - the, ahem, mc68881. @@ -39,7 +39,7 @@ SRCS+= asincos.s atan.s atan2.c atanh.s cosh.s expm1.s floor.s \ # ieee SRCS+= cabs.c cbrt.c -.elif (${MACHINE} == "i386") +.elif (${MACHINE_ARCH} == "i386") HARDWARE=i387 .PATH: ${.CURDIR}/common_source ${.CURDIR}/common ${.CURDIR}/ieee |