Re: [Qemu-devel] [PATCH] build: build block-obj-y explicitly before recursing

2014-02-28 Thread Paolo Bonzini
Il 28/02/2014 06:27, Stefan Weil ha scritto: >> -$(SUBDIR_RULES): libqemuutil.a libqemustub.a $(common-obj-y) >> +$(SUBDIR_RULES): libqemuutil.a libqemustub.a $(common-obj-y) $(block-obj-y) Using SUBDIR_RULES here instead of SOFTMMU_SUBDIR_RULES (as in my patch) includes more dependencies: $(blo

Re: [Qemu-devel] [PATCH] build: build block-obj-y explicitly before recursing

2014-02-27 Thread Stefan Weil
Am 28.02.2014 06:27, schrieb Stefan Weil: > Am 27.02.2014 23:50, schrieb Jeff Cody: >> On Thu, Feb 27, 2014 at 11:22:08PM +0100, Paolo Bonzini wrote: >>> block-obj-y is not anymore part of common-obj-y, because "nesting" >>> variables is complicated and requires specifying the correct >>> ordering

Re: [Qemu-devel] [PATCH] build: build block-obj-y explicitly before recursing

2014-02-27 Thread Stefan Weil
Am 27.02.2014 23:50, schrieb Jeff Cody: > On Thu, Feb 27, 2014 at 11:22:08PM +0100, Paolo Bonzini wrote: >> block-obj-y is not anymore part of common-obj-y, because "nesting" >> variables is complicated and requires specifying the correct >> ordering in the calls to unnest-vars. However, because o

Re: [Qemu-devel] [PATCH] build: build block-obj-y explicitly before recursing

2014-02-27 Thread Jeff Cody
On Thu, Feb 27, 2014 at 11:22:08PM +0100, Paolo Bonzini wrote: > block-obj-y is not anymore part of common-obj-y, because "nesting" > variables is complicated and requires specifying the correct > ordering in the calls to unnest-vars. However, because of this > we need to specify block-obj-y in th

[Qemu-devel] [PATCH] build: build block-obj-y explicitly before recursing

2014-02-27 Thread Paolo Bonzini
block-obj-y is not anymore part of common-obj-y, because "nesting" variables is complicated and requires specifying the correct ordering in the calls to unnest-vars. However, because of this we need to specify block-obj-y in the dependencies of the target subdirectories. Thanks to Stefan Weil and