]> granicus.if.org Git - libvpx/commitdiff
makefile: fix .so build rule
authorJohn Koleszar <jkoleszar@google.com>
Tue, 24 Jul 2012 23:18:38 +0000 (16:18 -0700)
committerJohn Koleszar <jkoleszar@google.com>
Tue, 24 Jul 2012 23:18:38 +0000 (16:18 -0700)
Use $^ vs $? to capture all prerequisites, rather than only newer ones.

Change-Id: I464ffb2913cf60f5ca5e07518ad4bf7da10baf87

build/make/Makefile

index b6cf3208a340edb2929973efd04777ba2ca4cb87..adfe9372369264d9d1f1ed0a87eb7e0d7a360d9d 100755 (executable)
@@ -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