On Sat, Jun 09, 2012 at 09:08:38AM +0200, Stefan Weil wrote: > qapi-dir does not need an absolute path. All other build directories > are relative. When BUILD_DIR is removed, the build output looks better > (no long lines with absolute paths when everything else uses short > lines): > > GEN qapi-generated/qga-qapi-types.c > CC qapi-generated/qga-qapi-types.o > GEN qapi-generated/qga-qapi-visit.c > CC qapi-generated/qga-qapi-visit.o > GEN qapi-generated/qga-qmp-marshal.c > CC qapi-generated/qga-qmp-marshal.o > > Using a relative path also avoids potential problems when BUILD_DIR > includes blanks. > > Signed-off-by: Stefan Weil <s...@weilnetz.de> > --- > Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-)
I merged this but have CCed Michael Roth to take a look. qemu.git contains an earlier commit to explicitly add $(BUILD_DIR): commit 9b129408589b2ed7bb2cdea03d2aba46a5fd74d4 Author: Michael Roth <mdr...@linux.vnet.ibm.com> Date: Tue Nov 29 16:47:49 2011 -0600 Makefile: use full path for qapi-generated directory Generally $(BUILD_DIR) == $(CURDIR), but that isn't necessarilly the case, so use $(BUILD_DIR)/qapi-generated for generated files to avoid potentionally sticking generating files in odd places outside the build's include paths. Signed-off-by: Anthony Liguori <aligu...@us.ibm.com> Does this rationale still apply? Is it really a good ideal to remove $(BUILD_DIR)? Stefan