diff mbox series

[XEN,1/2] tools: Allow to make *-dir-force-update without ./configure

Message ID 20191219144217.305851-2-anthony.perard@citrix.com (mailing list archive)
State New, archived
Headers show
Series Start using GitLab caching capability | expand

Commit Message

Anthony PERARD Dec. 19, 2019, 2:42 p.m. UTC
This also allows to run `make src-tarball` without first having to run
`./configure`.

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
---
 tools/Rules.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Wei Liu Jan. 3, 2020, 2:24 p.m. UTC | #1
On Thu, Dec 19, 2019 at 02:42:16PM +0000, Anthony PERARD wrote:
> This also allows to run `make src-tarball` without first having to run
> `./configure`.
> 
> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>

Acked-by: Wei Liu <wl@xen.org>
diff mbox series

Patch

diff --git a/tools/Rules.mk b/tools/Rules.mk
index cf8935d6a3ea..31cf419ef4f5 100644
--- a/tools/Rules.mk
+++ b/tools/Rules.mk
@@ -239,7 +239,8 @@  subdir-all-% subdir-clean-% subdir-install-% subdir-uninstall-%: .phony
 subdir-distclean-%: .phony
 	$(MAKE) -C $* distclean
 
-ifeq (,$(findstring clean,$(MAKECMDGOALS)))
+no-configure-targets := clean subtree-force-update-all %-dir-force-update
+ifeq (,$(filter $(no-configure-targets),$(MAKECMDGOALS)))
 $(XEN_ROOT)/config/Tools.mk:
 	$(error You have to run ./configure before building or installing the tools)
 endif