From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka <adolf.belka@ipfire.org> To: development@lists.ipfire.org Subject: [PATCH 3/6] libmpdclient: Add $(MAKETUNING) variable to ninja build Date: Thu, 02 Sep 2021 16:13:10 +0200 Message-ID: <20210902141313.2737982-3-adolf.belka@ipfire.org> In-Reply-To: <20210902141313.2737982-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1688710490087485469==" List-Id: <development.lists.ipfire.org> --===============1688710490087485469== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit - $(MAKETUNING) variable added to ninja build Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org> --- lfs/libmpdclient | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/libmpdclient b/lfs/libmpdclient index 24f516d01..ee18a37a6 100644 --- a/lfs/libmpdclient +++ b/lfs/libmpdclient @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = libmpdclient -PAK_VER = 4 +PAK_VER = 5 DEPS = @@ -79,7 +79,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) $(UPDATE_AUTOMAKE) cd $(DIR_APP) && meson --prefix=/usr builddir/ - cd $(DIR_APP) && ninja -C builddir/ + cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING) cd $(DIR_APP) && ninja -C builddir/ install @rm -rf $(DIR_APP) @$(POSTBUILD) -- 2.33.0 --===============1688710490087485469==--