add ugly hack for alpha to crank the optimisation level down to -O1,

because the default -O2 with gcc 2.95.3 builds a non functional newfs
This commit is contained in:
lukem 2002-01-06 23:09:47 +00:00
parent 83b973efe6
commit df7858b179

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.20 2002/01/04 11:30:33 lukem Exp $
# $NetBSD: Makefile,v 1.21 2002/01/06 23:09:47 lukem Exp $
# @(#)Makefile 8.2 (Berkeley) 3/27/94
PROG= newfs
@ -18,3 +18,10 @@ LINKS= ${BINDIR}/newfs ${BINDIR}/mount_mfs
MLINKS= mount_mfs.8 mfs.8
.include <bsd.prog.mk>
.if (${MACHINE} == "alpha")
#
# XXX gcc 2.95.3 with -O2 (the default) generates a non-functional newfs
#
CFLAGS+= -O1
.endif