[4/6] mpc: Add $(MAKETUNING) variable to ninja build

Message ID 20210902141313.2737982-4-adolf.belka@ipfire.org
State Accepted
Commit c20e5ec2725d6fa09de28a44020f8fa101e8505b
Headers
Series [1/6] glib: Add $(MAKETUNING) variable to ninja build |

Commit Message

Adolf Belka Sept. 2, 2021, 2:13 p.m. UTC
  - $(MAKETUNING) variable added to ninja build

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/mpc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Patch

diff --git a/lfs/mpc b/lfs/mpc
index 2060685cc..47b069401 100644
--- a/lfs/mpc
+++ b/lfs/mpc
@@ -32,7 +32,7 @@  DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = mpc
-PAK_VER    = 7
+PAK_VER    = 8
 
 DEPS       = mpd libmpdclient
 
@@ -78,7 +78,7 @@  $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
 	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)