diff options
author | adamw <adamw@FreeBSD.org> | 2005-04-11 17:53:17 +0000 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2005-04-11 17:53:17 +0000 |
commit | 122dac6f7dbbed768bf302c970063ad1cbefb5f5 (patch) | |
tree | fd369a17024bcfa23502b50315abc0a02dfac62a /multimedia/libmpeg2 | |
parent | b2c50851e0cec1f1b5a5390e99609553ec73322d (diff) | |
download | FreeBSD-ports-122dac6f7dbbed768bf302c970063ad1cbefb5f5.zip FreeBSD-ports-122dac6f7dbbed768bf302c970063ad1cbefb5f5.tar.gz |
De-obrienize: move ${ARCH} conditional expression to after bsd.port.pre.mk.
Diffstat (limited to 'multimedia/libmpeg2')
-rw-r--r-- | multimedia/libmpeg2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/multimedia/libmpeg2/Makefile b/multimedia/libmpeg2/Makefile index 783baac..bd1b95c 100644 --- a/multimedia/libmpeg2/Makefile +++ b/multimedia/libmpeg2/Makefile @@ -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 |