diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-04-29 19:54:54 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-04-29 19:54:54 +0000 |
commit | 088db292dc44258779b0f5e86cc0c3790f30893e (patch) | |
tree | 9b7919f634bd2b8fc27e5cb07c40157e3357947f /Makefile | |
parent | 7dbafe70cb793b8809084ab0f582a3cf5e54ed49 (diff) | |
download | ioquake3-aero-088db292dc44258779b0f5e86cc0c3790f30893e.tar.gz ioquake3-aero-088db292dc44258779b0f5e86cc0c3790f30893e.zip |
SDL built won't get copied anymore because it gets built by default even if SMP doesn't work.
git-svn-id: svn://svn.icculus.org/quake3/trunk@732 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1678,9 +1678,10 @@ ifneq ($(BUILD_CLIENT),0) $(INSTALL) -s -m 0755 $(BR)/ioquake3.$(ARCH)$(BINEXT) $(COPYDIR)/ioquake3.$(ARCH)$(BINEXT) endif -ifneq ($(BUILD_CLIENT_SMP),0) - $(INSTALL) -s -m 0755 $(BR)/ioquake3-smp.$(ARCH)$(BINEXT) $(COPYDIR)/ioquake3-smp.$(ARCH)$(BINEXT) -endif +# Don't copy the SMP until it's working together with SDL. +#ifneq ($(BUILD_CLIENT_SMP),0) +# $(INSTALL) -s -m 0755 $(BR)/ioquake3-smp.$(ARCH)$(BINEXT) $(COPYDIR)/ioquake3-smp.$(ARCH)$(BINEXT) +#endif ifneq ($(BUILD_SERVER),0) @if [ -f $(BR)/ioq3ded.$(ARCH)$(BINEXT) ]; then \ |