projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc44e2f
)
tools: don't call make recursively from libs.mk
author
Juergen Gross
<jgross@suse.com>
Sun, 23 Aug 2020 08:00:11 +0000
(10:00 +0200)
committer
Wei Liu
<wl@xen.org>
Thu, 27 Aug 2020 12:59:46 +0000
(12:59 +0000)
During build of a xen library make is called again via libs.mk. This is
not necessary as the same can be achieved by a simple dependency.
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Ian Jackson <ian.jackson@eu.citrix.com>
Acked-by: Wei Liu <wl@xen.org>
tools/libs/libs.mk
patch
|
blob
|
history
diff --git
a/tools/libs/libs.mk
b/tools/libs/libs.mk
index 8045c00e9a5433d205a1de45597fddbdd35bcc75..764f5441e24242702ff66df0efb6abe0e8468553 100644
(file)
--- a/
tools/libs/libs.mk
+++ b/
tools/libs/libs.mk
@@
-45,8
+45,7
@@
$(PKG_CONFIG_LOCAL): PKG_CONFIG_LIBDIR = $(CURDIR)
all: build
.PHONY: build
-build:
- $(MAKE) libs
+build: libs
.PHONY: libs
libs: headers.chk $(LIB) $(PKG_CONFIG_INST) $(PKG_CONFIG_LOCAL)