From owner-cvs-sys Thu May 30 18:01:33 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA24006 for cvs-sys-outgoing; Thu, 30 May 1996 18:01:33 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA23987; Thu, 30 May 1996 18:01:26 -0700 (PDT) Date: Thu, 30 May 1996 18:01:26 -0700 (PDT) From: Peter Wemm Message-Id: <199605310101.SAA23987@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/i386/conf Makefile.i386 Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 96/05/30 18:01:26 Modified: sys/i386/conf Makefile.i386 Log: Instead of: cpp blah file.s | as -o file.o, use instead: cc -c -x assembler-with-cpp -o file.o file.s. This means that any cpp fatal errors will now be detected, as well as running *.s files through an ansi cpp instead of a traditional cpp. (fixes to allow *.s to compile under both ansi and traditional to follow) Revision Changes Path 1.83 +3 -5 src/sys/i386/conf/Makefile.i386