summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorhairball <xhairball@gmail.com>2014-02-08 22:02:24 +0000
committerTim Angus <tim@ngus.net>2014-06-17 17:43:39 +0100
commit53dc916848c6c3bbf219976eb8a72c2bbea97348 (patch)
treeaf5b033a18986d93a244617008678da36980588c /Makefile
parent28e153c99d1c067a8bcbbabf3cd0c02e7150aee8 (diff)
Remove unnecessary NEED_VORBIS since you have USE_CODEC_VORBIS
Thanks zturtleman for catching this
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ec479d16..25217337 100644
--- a/Makefile
+++ b/Makefile
@@ -967,7 +967,6 @@ endif
ifeq ($(USE_CODEC_VORBIS),1)
CLIENT_CFLAGS += -DUSE_CODEC_VORBIS
NEED_OGG=1
- NEED_VORBIS=1
endif
ifeq ($(USE_CODEC_OPUS),1)
@@ -992,7 +991,7 @@ ifeq ($(NEED_OGG),1)
endif
endif
-ifeq ($(NEED_VORBIS),1)
+ifeq ($(USE_CODEC_VORBIS),1)
ifeq ($(USE_INTERNAL_VORBIS),1)
CLIENT_CFLAGS += -I$(VORBISDIR)/include -I$(VORBISDIR)/lib
@@ -1889,7 +1888,7 @@ Q3OBJ += \
endif
endif
-ifeq ($(NEED_VORBIS),1)
+ifeq ($(USE_CODEC_VORBIS),1)
ifeq ($(USE_INTERNAL_VORBIS),1)
Q3OBJ += \
$(B)/client/vorbis/analysis.o \