Commit efa95968 authored by Michael Niedermayer's avatar Michael Niedermayer

common.mak: fix (not)building disabled libs

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 3d7218d9
...@@ -93,7 +93,10 @@ include $(SRC_PATH)/arch.mak ...@@ -93,7 +93,10 @@ include $(SRC_PATH)/arch.mak
OBJS += $(OBJS-yes) OBJS += $(OBJS-yes)
SLIBOBJS += $(SLIBOBJS-yes) SLIBOBJS += $(SLIBOBJS-yes)
FFLIBS := $(FFLIBS-$(NAME)) $(FFLIBS-yes) $(FFLIBS) FFLIBS := $(FFLIBS-yes) $(FFLIBS)
ifdef NAME
FFLIBS := $(FFLIBS-$(NAME)) $(FFLIBS)
endif
TESTPROGS += $(TESTPROGS-yes) TESTPROGS += $(TESTPROGS-yes)
LDLIBS = $(FFLIBS:%=%$(BUILDSUF)) LDLIBS = $(FFLIBS:%=%$(BUILDSUF))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment