diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2010-11-25 15:29:19 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2010-11-25 15:29:19 +0000 |
commit | 3381d497856a32e9669768043567b6de1b24a953 (patch) | |
tree | 4bb2d447f8cb3a2961f0b1a994390df14e8bfe2e /games/ioquake3 | |
parent | e20f6fdb9ffefaf24112f18a2eb97d7108893e38 (diff) | |
download | ports-3381d497856a32e9669768043567b6de1b24a953.tar.gz ports-3381d497856a32e9669768043567b6de1b24a953.zip |
Notes
Diffstat (limited to 'games/ioquake3')
-rw-r--r-- | games/ioquake3/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/games/ioquake3/Makefile b/games/ioquake3/Makefile index b37f75766383..890cd87a0e9d 100644 --- a/games/ioquake3/Makefile +++ b/games/ioquake3/Makefile @@ -101,6 +101,7 @@ MAKE_ARGS+= BUILD_CLIENT=1 PLIST_SUB+= CLIENT="" Q3BIN+= ${Q3CLIENT} .else +MAKE_ARGS+= BUILD_CLIENT=0 PLIST_SUB+= CLIENT="@comment " .endif @@ -109,6 +110,7 @@ MAKE_ARGS+= BUILD_SERVER=1 PLIST_SUB+= DEDICATED="" Q3BIN+= ${Q3SERVER} .else +MAKE_ARGS+= BUILD_SERVER=0 PLIST_SUB+= DEDICATED="@comment " .endif @@ -125,6 +127,7 @@ MAKE_ARGS+= BUILD_CLIENT_SMP=1 PLIST_SUB+= SMP="" Q3BIN+= ${Q3CLIENT}-smp .else +MAKE_ARGS+= BUILD_CLIENT_SMP=0 PLIST_SUB+= SMP="@comment " .endif |