From: Paolo Bonzini Date: Tue, 29 Apr 2014 14:12:50 +0000 (+0200) Subject: build: Fix per-object variables for Makefile.target X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5a8b231e7ed39b25e141e8fbbde48203d2361cc2;p=qemu.git build: Fix per-object variables for Makefile.target The compiling is done in a subdir, so the extraction of per-object libs and cflags are referencing objects with ../ prefixed. So prefix the per-object variables "foo.o-cflags" and "foo.o-libs" to "../foo.o-cflags" and "../foo.o-libs". Signed-off-by: Fam Zheng Reviewed-by: Michael Tokarev Signed-off-by: Paolo Bonzini --- diff --git a/rules.mak b/rules.mak index 5c454d80d5..7038576282 100644 --- a/rules.mak +++ b/rules.mak @@ -228,6 +228,7 @@ endef define unnest-vars $(eval obj := $1) $(eval nested-vars := $2) +$(foreach v,$(nested-vars),$(call fix-obj-vars,$v,$(if $(obj),$(obj)/))) $(eval old-nested-dirs := ) $(call unnest-vars-1) $(if $1,$(foreach v,$(nested-vars),$(eval \