From 31d8f954276ad9b252e6b6f2ac96371f01519d2b Mon Sep 17 00:00:00 2001 From: hairball Date: Sat, 8 Feb 2014 22:02:24 +0000 Subject: [PATCH] Remove unnecessary NEED_VORBIS since you have USE_CODEC_VORBIS Thanks zturtleman for catching this --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 597cdcba..40d0585e 100644 --- a/Makefile +++ b/Makefile @@ -995,7 +995,6 @@ endif ifeq ($(USE_CODEC_VORBIS),1) CLIENT_CFLAGS += -DUSE_CODEC_VORBIS NEED_OGG=1 - NEED_VORBIS=1 endif ifeq ($(USE_CODEC_OPUS),1) @@ -1020,7 +1019,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 @@ -1994,7 +1993,7 @@ Q3OBJ += \ endif endif -ifeq ($(NEED_VORBIS),1) +ifeq ($(USE_CODEC_VORBIS),1) ifeq ($(USE_INTERNAL_VORBIS),1) Q3OBJ += \ $(B)/client/vorbis/analysis.o \