Commit 2351d188 authored by Filipe Brandenburger's avatar Filipe Brandenburger Committed by Pavel Emelyanov

make: fix dependencies for "make criu" to work

Without the added dependencies, "make criu" will fail when trying to
build arch/x86/crtools.d because it can not find include/config.h, the
extra dependencies force the "config" rule to be processed before the
dependencies of "criu" are evaluated.
Signed-off-by: 's avatarFilipe Brandenburger <filbranden@google.com>
Acked-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Acked-by: 's avatarAndrew Vagin <avagin@parallels.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent c1c7d898
...@@ -184,6 +184,7 @@ pie/$(VDSO_O): pie ...@@ -184,6 +184,7 @@ pie/$(VDSO_O): pie
$(Q) $(MAKE) $(build)=pie pie/$(VDSO_O) $(Q) $(MAKE) $(build)=pie pie/$(VDSO_O)
PROGRAM-BUILTINS += pie/$(VDSO_O) PROGRAM-BUILTINS += pie/$(VDSO_O)
$(SYSCALL-LIB) $(ARCH-LIB) $(PROGRAM-BUILTINS): config
$(PROGRAM): $(SYSCALL-LIB) $(ARCH-LIB) $(PROGRAM-BUILTINS) $(PROGRAM): $(SYSCALL-LIB) $(ARCH-LIB) $(PROGRAM-BUILTINS)
$(E) " LINK " $@ $(E) " LINK " $@
......
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