Add -fno-reorder-blocks for gcc4, to avoid duplicate label definition

by RAS_END() - untill we find some better solution.
This commit is contained in:
martin 2006-09-02 21:27:41 +00:00
parent 497415f67e
commit f6e2a81ff9
1 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.2 2002/09/18 05:41:54 lukem Exp $
# $NetBSD: Makefile,v 1.3 2006/09/02 21:27:41 martin Exp $
NOMAN= #defined
PROG= ras3
WARNS= 2
@ -13,3 +12,7 @@ regress:
fi
.include <bsd.prog.mk>
.if ${HAVE_GCC} == 4
CFLAGS+= -fno-reorder-blocks
.endif