summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Soule Cheloha <cheloha@cvs.openbsd.org>2023-10-29 23:32:53 +0000
committerScott Soule Cheloha <cheloha@cvs.openbsd.org>2023-10-29 23:32:53 +0000
commitfbee949861123902e67c52fcfa3c5a7a7faf7a12 (patch)
tree18f15545f2996dc86cdc1e8d41451335767fbba5
parent48239f4e1de5c697d4836329fd6ef0f732b26fd4 (diff)
libc: Makefile.inc: remove "sparc" from quad support list; ok deraadt@
-rw-r--r--lib/libc/Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/Makefile.inc b/lib/libc/Makefile.inc
index 03de905a23d..ed0e736bf15 100644
--- a/lib/libc/Makefile.inc
+++ b/lib/libc/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.30 2022/01/01 23:47:14 guenther Exp $
+# $OpenBSD: Makefile.inc,v 1.31 2023/10/29 23:32:52 cheloha Exp $
#
# This file contains make rules used to build libc
#
@@ -50,7 +50,7 @@ AINC+= -nostdinc -idirafter ${DESTDIR}/usr/include
# 32-bit systems need these
.if (${MACHINE_CPU} == "i386") || (${MACHINE_CPU} == "powerpc") || \
(${MACHINE_CPU} == "hppa") || (${MACHINE_CPU} == "arm") || \
- (${MACHINE_CPU} == "sparc") || (${MACHINE_CPU} == "sh") || \
+ (${MACHINE_CPU} == "sh") || \
(${MACHINE_CPU} == "m88k")
.include "${LIBCSRCDIR}/quad/Makefile.inc"
.endif