From: John Koleszar Date: Tue, 24 Jul 2012 23:18:38 +0000 (-0700) Subject: makefile: fix .so build rule X-Git-Tag: v1.3.0~1217^2~363 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dcb52c0f68d402b96a0bac30be449a79668b2e12;p=libvpx makefile: fix .so build rule Use $^ vs $? to capture all prerequisites, rather than only newer ones. Change-Id: I464ffb2913cf60f5ca5e07518ad4bf7da10baf87 --- diff --git a/build/make/Makefile b/build/make/Makefile index b6cf3208a..adfe93723 100755 --- a/build/make/Makefile +++ b/build/make/Makefile @@ -250,7 +250,7 @@ $(1): $(qexec)$$(LD) -shared $$(LDFLAGS) \ -Wl,--no-undefined -Wl,-soname,$$(SONAME) \ -Wl,--version-script,$$(SO_VERSION_SCRIPT) -o $$@ \ - $$(filter %.o,$$?) $$(extralibs) + $$(filter %.o,$$^) $$(extralibs) endef define lipo_lib_template