mirror of https://git.ffmpeg.org/ffmpeg.git
common.mak: fix (not)building disabled libs
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3d7218d932
commit
efa9596831
|
@ -93,7 +93,10 @@ include $(SRC_PATH)/arch.mak
|
|||
|
||||
OBJS += $(OBJS-yes)
|
||||
SLIBOBJS += $(SLIBOBJS-yes)
|
||||
FFLIBS := $(FFLIBS-$(NAME)) $(FFLIBS-yes) $(FFLIBS)
|
||||
FFLIBS := $(FFLIBS-yes) $(FFLIBS)
|
||||
ifdef NAME
|
||||
FFLIBS := $(FFLIBS-$(NAME)) $(FFLIBS)
|
||||
endif
|
||||
TESTPROGS += $(TESTPROGS-yes)
|
||||
|
||||
LDLIBS = $(FFLIBS:%=%$(BUILDSUF))
|
||||
|
|
Loading…
Reference in New Issue