diff options
author | Alejandro Pulver <alepulver@FreeBSD.org> | 2006-08-03 23:22:36 +0000 |
---|---|---|
committer | Alejandro Pulver <alepulver@FreeBSD.org> | 2006-08-03 23:22:36 +0000 |
commit | 83b637ebdc14e523f31a2e7b1c7e6a3ca624dbc0 (patch) | |
tree | aa2a06607756d5c22f118186d02d0555c3f3b74e /games | |
parent | Update to the new version psvn-20824. (diff) |
- Fix building on non-i386.
PR: ports/101328
Submitted by: Roland Smith <rsmith@xs4all.nl>
Notes
Notes:
svn path=/head/; revision=169602
Diffstat (limited to 'games')
-rw-r--r-- | games/tyrquake/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/tyrquake/Makefile b/games/tyrquake/Makefile index 3de8e4648de7..2cc1431fb9a4 100644 --- a/games/tyrquake/Makefile +++ b/games/tyrquake/Makefile @@ -30,7 +30,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME} MAKE_ENV+= OPTIMIZED_CFLAGS=YES .endif -.if !defined(WITHOUT_X86_ASM) +.if defined(WITHOUT_X86_ASM) || ${ARCH} != "i386" MAKE_ENV+= NO_X86_ASM=YES .endif |