diff options
author | James Almer <jamrial@gmail.com> | 2017-10-12 17:32:10 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-12 19:15:42 -0300 |
commit | 4b175913bed8df8c5d4f474d03963a0d99a87b3f (patch) | |
tree | b8d7deea0562bd0a454ed02faa179a8794f27be9 /ffbuild/common.mak | |
parent | 3a6ded7cfcb33e06ade98c5791eae06453f65668 (diff) | |
download | ffmpeg-4b175913bed8df8c5d4f474d03963a0d99a87b3f.tar.gz |
build: fix builds configured with a suffix
Regression since 6dfcbd80ad446ff163b47f2bf432bbf706436ea8
Tested-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'ffbuild/common.mak')
-rw-r--r-- | ffbuild/common.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ffbuild/common.mak b/ffbuild/common.mak index a6b23e029f..63a3c2f2d0 100644 --- a/ffbuild/common.mak +++ b/ffbuild/common.mak @@ -119,7 +119,7 @@ FFLIBS := $($(NAME)_FFLIBS) $(FFLIBS-yes) $(FFLIBS) TESTPROGS += $(TESTPROGS-yes) LDLIBS = $(FFLIBS:%=%$(BUILDSUF)) -FFEXTRALIBS := $(FFLIBS:%=$(LD_LIB)) $(foreach lib,EXTRALIBS-$(NAME) $(FFLIBS:%=EXTRALIBS-%),$($(lib))) $(EXTRALIBS) +FFEXTRALIBS := $(LDLIBS:%=$(LD_LIB)) $(foreach lib,EXTRALIBS-$(NAME) $(FFLIBS:%=EXTRALIBS-%),$($(lib))) $(EXTRALIBS) OBJS := $(sort $(OBJS:%=$(SUBDIR)%)) SLIBOBJS := $(sort $(SLIBOBJS:%=$(SUBDIR)%)) |