From: Razvan Deaconescu Date: Fri, 11 Aug 2023 06:38:21 +0000 (+0300) Subject: Makefile.uk: Use mk_sub_libbuild_dir to create directory hierarchies X-Git-Tag: RELEASE-0.14.0 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=998d54c9e2cb9d91709b389cd868a93299fadad7;p=unikraft%2Flibs%2Flua.git Makefile.uk: Use mk_sub_libbuild_dir to create directory hierarchies Unikraft core build system currently enforces the use of `mk_sub_libbuild_dir` function instead of `mk_sub_build_dir` for creating directory hierarchies, i.e. creating more than the first-level subdirectory. Update `Makefile.uk` accordingly: replace the call to `mk_sub_build_dir` with a call to `mk_sub_libbuild_dir`. Signed-off-by: Razvan Deaconescu Reviewed-by: Stefan Jumarea Approved-by: Stefan Jumarea Tested-by: Unikraft CI GitHub-Closes: #9 --- diff --git a/Makefile.uk b/Makefile.uk index cae7e7f..2a2da5c 100644 --- a/Makefile.uk +++ b/Makefile.uk @@ -24,7 +24,7 @@ LIBLUA_SRCS_BASE=$(LIBLUA_ORIGIN)/$(LIBLUA_TARBALL)/src ################################################################################ # Put public headers of the library to a public folder and export them globally. # The prepare step below takes care of populating the folder. -$(call mk_sub_build_dir,liblua/include) +$(call mk_sub_libbuild_dir,liblua,include) CINCLUDES-$(CONFIG_LIBLUA) += -I$(LIBLUA_BUILD)/include CXXINCLUDES-$(CONFIG_LIBLUA) += -I$(LIBLUA_BUILD)/include