diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2022-09-14 16:19:36 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-09-19 15:16:00 +0200 |
| commit | 9ee37d3bb89c8743e8b1a0e69af8efb6e25bb7db (patch) | |
| tree | 0bd7c637cf7eb802c28f41edf1e1603d51394ed0 | |
| parent | efcca7ef172a6844423670aa62f93099feb58b8c (diff) | |
| download | focaccia-qemu-9ee37d3bb89c8743e8b1a0e69af8efb6e25bb7db.tar.gz focaccia-qemu-9ee37d3bb89c8743e8b1a0e69af8efb6e25bb7db.zip | |
build: remove extra parentheses causing missing rebuilds
Because of two stray parentheses at the end of the definition of ninja-cmd-goals, the test that is last in the .check-TESTSUITENAME.deps variable will not be rebuilt. Fix that. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 13234f2aa4..b576cba5a8 100644 --- a/Makefile +++ b/Makefile @@ -145,7 +145,7 @@ NINJAFLAGS = $(if $V,-v) $(if $(MAKE.n), -n) $(if $(MAKE.k), -k0) \ $(filter-out -j, $(lastword -j1 $(filter -l% -j%, $(MAKEFLAGS)))) \ -d keepdepfile ninja-cmd-goals = $(or $(MAKECMDGOALS), all) -ninja-cmd-goals += $(foreach g, $(MAKECMDGOALS), $(.ninja-goals.$g)))) +ninja-cmd-goals += $(foreach g, $(MAKECMDGOALS), $(.ninja-goals.$g)) makefile-targets := build.ninja ctags TAGS cscope dist clean uninstall # "ninja -t targets" also lists all prerequisites. If build system |