summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2000-11-07 21:54:46 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2000-11-07 21:54:46 +0000
commit17d92261efe581138140399eac927538e30b1fe5 (patch)
tree1ba9d8b535455750295fbf009cc4a0e0a15a109a /sys/arch
parentffe8bf58e5d6a21c7d922810439c1f9f7e3c9a5e (diff)
Use cc -xassembler-with-cpp instead of cpp | as
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/alpha/conf/Makefile.alpha4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/conf/Makefile.alpha b/sys/arch/alpha/conf/Makefile.alpha
index 505669f160f..e4400beb05a 100644
--- a/sys/arch/alpha/conf/Makefile.alpha
+++ b/sys/arch/alpha/conf/Makefile.alpha
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.alpha,v 1.17 1998/07/01 01:11:12 deraadt Exp $
+# $OpenBSD: Makefile.alpha,v 1.18 2000/11/07 21:54:45 art Exp $
# $NetBSD: Makefile.alpha,v 1.27 1996/12/01 06:12:25 jonathan Exp $
# Makefile for OpenBSD
@@ -70,7 +70,7 @@ LIBCOMPAT= ${COMPATLIB_PROF}
# HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
-NORMAL_S= ${CPP} ${AFLAGS} ${CPPFLAGS} $< | sed -e 's,^\#.*,,' | ${AS} -o ${.TARGET}
+NORMAL_S= ${CC} -xassembler-with-cpp ${AFLAGS} ${CPPFLAGS} -c $<
HOSTED_C= ${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<