Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-4]: src/usr.bin/rwho Apply patch (requested by he):
details: https://anonhg.NetBSD.org/src/rev/7d94e94299fd
branches: netbsd-1-4
changeset: 470456:7d94e94299fd
user: he <he%NetBSD.org@localhost>
date: Wed Mar 01 12:52:35 2000 +0000
description:
Apply patch (requested by he):
Avoid optimizer bug in egcs for i386, works around PR#8364.
diffstat:
usr.bin/rwho/Makefile | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diffs (15 lines):
diff -r aa1598f7f599 -r 7d94e94299fd usr.bin/rwho/Makefile
--- a/usr.bin/rwho/Makefile Wed Mar 01 12:49:12 2000 +0000
+++ b/usr.bin/rwho/Makefile Wed Mar 01 12:52:35 2000 +0000
@@ -1,6 +1,10 @@
-# $NetBSD: Makefile,v 1.3 1997/01/09 15:33:42 tls Exp $
+# $NetBSD: Makefile,v 1.3.4.1 2000/03/01 12:52:35 he Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= rwho
+.if (${MACHINE_ARCH} == "i386")
+CFLAGS= -O # work around bug in egcs
+.endif
+
.include <bsd.prog.mk>
Home |
Main Index |
Thread Index |
Old Index