From: Peter Xu Date: Wed, 4 Aug 2021 13:23:27 +0000 (-0400) Subject: Makefile: Fix gtags generation X-Git-Tag: qemu-xen-4.17.0-rc4~244^2~26 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b8c9ed15fd0515314a11baa9291ea051a6867f8f;p=qemu-xen.git Makefile: Fix gtags generation We should use "-print" or otherwise all "-prone" is ignored. Signed-off-by: Peter Xu Message-Id: <20210804132328.41353-2-peterx@redhat.com> Signed-off-by: Paolo Bonzini --- diff --git a/Makefile b/Makefile index fe9415ac64..1b36bf2af4 100644 --- a/Makefile +++ b/Makefile @@ -256,7 +256,7 @@ gtags: "GTAGS", "Remove old $@ files") $(call quiet-command, \ (cd $(SRC_PATH) && \ - $(find-src-path) | gtags -f -), \ + $(find-src-path) -print | gtags -f -), \ "GTAGS", "Re-index $(SRC_PATH)") .PHONY: TAGS