diff options
author | pav <pav@FreeBSD.org> | 2011-09-29 15:37:17 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2011-09-29 15:37:17 +0800 |
commit | 625b5997ea2b66375e674cc1be4e5f17ec050e73 (patch) | |
tree | f91df91da903fe0acf8590a3bcdbd47e324acf9f /games | |
parent | 54f72f9aeafe1093ae7f9f2322ef8b5dc2863ae1 (diff) | |
download | freebsd-ports-gnome-625b5997ea2b66375e674cc1be4e5f17ec050e73.tar.gz freebsd-ports-gnome-625b5997ea2b66375e674cc1be4e5f17ec050e73.tar.zst freebsd-ports-gnome-625b5997ea2b66375e674cc1be4e5f17ec050e73.zip |
- Fix build
Submitted by: Gautam Mani <execve@gmail.com> (maintainer)
Diffstat (limited to 'games')
-rw-r--r-- | games/stockfish/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/games/stockfish/Makefile b/games/stockfish/Makefile index 2531279c02c9..d325180e7c1f 100644 --- a/games/stockfish/Makefile +++ b/games/stockfish/Makefile @@ -25,8 +25,9 @@ ALL_TARGET= build ARCH=${MYARCH} # workaround the ARCH usage in the stockfish Makefile .if ${MYARCH} == "i386" -MYARCH= x86-32 -ALL_TARGET= build ARCH=${MYARCH} +ALL_TARGET= build ARCH=x86-32 +.elif ${MYARCH} == "amd64" +ALL_TARGET= build ARCH=x86-64 .endif .if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" |