optimization workaround to keep gcc from looping on alpha

This commit is contained in:
jolan 2004-01-22 07:20:08 +00:00
parent a362888a2c
commit 7ae1781d2e

View File

@ -1,10 +1,11 @@
# $OpenBSD: Makefile,v 1.4 2004/01/09 01:27:42 jolan Exp $
# $OpenBSD: Makefile,v 1.5 2004/01/22 07:20:08 jolan Exp $
COMMENT= "xfce4 file manager"
DISTNAME= xffm-${V}
# XXX workaround gcc bugs on ppc/sparc64
.if ${MACHINE_ARCH:Mpowerpc} || ${MACHINE_ARCH:Msparc64}
.if ${MACHINE_ARCH:Malpha} || ${MACHINE_ARCH:Mpowerpc} || \
${MACHINE_ARCH:Msparc64}
PATCH_LIST= patch-* gcc-*
.endif