diff options
author | kris <kris@FreeBSD.org> | 2006-01-14 17:27:02 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2006-01-14 17:27:02 +0800 |
commit | 469672730ffce8f0eb450807fd640d65a2861687 (patch) | |
tree | b1a913a1e3ad298000216c7fa5c47b63fab8e9db /games | |
parent | e841cc32a54d9f08909d9da4ccb5c166eda02299 (diff) | |
download | freebsd-ports-gnome-469672730ffce8f0eb450807fd640d65a2861687.tar.gz freebsd-ports-gnome-469672730ffce8f0eb450807fd640d65a2861687.tar.zst freebsd-ports-gnome-469672730ffce8f0eb450807fd640d65a2861687.zip |
BROKEN on sparc64: Does not compile
Diffstat (limited to 'games')
-rw-r--r-- | games/vdrift/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/games/vdrift/Makefile b/games/vdrift/Makefile index 9a0cc76c6dad..34f4d3b00b21 100644 --- a/games/vdrift/Makefile +++ b/games/vdrift/Makefile @@ -43,6 +43,10 @@ SCONS_ARGS+= release=1 BROKEN= "does not compile" .endif +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + post-patch: @${FIND} ${WRKSRC}/src/* -type f -exec ${REINPLACE_CMD} -e 's|SDL/|SDL11/|g' "{}" \; @${FIND} ${WRKSRC}/include/* -type f -exec ${REINPLACE_CMD} -e 's|SDL/|SDL11/|g' "{}" \; |