De-obrienize: move ${ARCH} conditional expression to after bsd.port.pre.mk.

This commit is contained in:
Adam Weinberger
2005-04-11 17:53:17 +00:00
parent 5e5042f4c7
commit d80a9dfb22

View File

@@ -47,14 +47,14 @@ CONFIGURE_ARGS+= --disable-sdl
CONFIGURE_ARGS+= --disable-warnings
.endif
.include <bsd.port.pre.mk>
# We must be able to build EV6 code; actual CPU-type optimizations
# are chosen at runtime.
.if ${ARCH:L} == "alpha"
.if ${ARCH} == "alpha"
CFLAGS:= ${CFLAGS:N-mcpu=*}
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == "alpha" && ${OSVERSION} >= 502102
BROKEN= "Does not compile on alpha 5.x"
.endif