]> xenbits.xensource.com Git - people/jgross/xen.git/commitdiff
tools: don't call make recursively from libs.mk
authorJuergen Gross <jgross@suse.com>
Sun, 23 Aug 2020 08:00:11 +0000 (10:00 +0200)
committerJuergen Gross <jgross@suse.com>
Sun, 23 Aug 2020 08:48:28 +0000 (10:48 +0200)
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>
tools/libs/libs.mk

index 8045c00e9a5433d205a1de45597fddbdd35bcc75..764f5441e24242702ff66df0efb6abe0e8468553 100644 (file)
@@ -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)