From patchwork Thu Sep 2 14:13:08 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4661 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4H0jZb70xjz3wy6 for ; Thu, 2 Sep 2021 14:13:27 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4H0jZb4pnbz5Q3; Thu, 2 Sep 2021 14:13:27 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4H0jZb49hDz2yXv; Thu, 2 Sep 2021 14:13:27 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4H0jZZ2lV5z2xd7 for ; Thu, 2 Sep 2021 14:13:26 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4H0jZY4pCtz136; Thu, 2 Sep 2021 14:13:25 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1630592005; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=QOFCSubg0XffnVIMVPlhPGOwsciroxzHYwUPWStbr14=; b=Uw35P72lQsoSuxN2lQgf7Ch6ozU8f/mz4u3wfGdDofkXcyK2y0gS5AlZjPg70V19joUNpy 6yNLGtBM+UM44tBw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1630592005; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=QOFCSubg0XffnVIMVPlhPGOwsciroxzHYwUPWStbr14=; b=p2CkUdV5auEiYsIdnENcSH0WWmv6WFYGOQa39XLlS1tD1CiKjTMAvNyiFKsNctWX0VZ4c/ wKCCWRiaiY+MudmfeECcoAvW2B+QgHdimbNoFLB1GmromctkcBI/kj+QSeJTafN3JhERNw 8CaUmDSmnrbTdeB/3GuzZPa2LRJAFYgJGjkatc3qaGeooJkwB2/UChKxrRxd4fR2Sa41OK 4VoKJVKrxrCu55zC2L8BwJ7ZJOHCVJlI0EvD+7qsgqgzQJVnGwct21Tp3AX2G5P3qF5sHe EGAmM5Cgv1miPiXGXfQoG7MQFREjlJGmpGUaStIZOUAalcOLu9pN8gwVdP1n9A== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 1/6] glib: Add $(MAKETUNING) variable to ninja build Date: Thu, 2 Sep 2021 16:13:08 +0200 Message-Id: <20210902141313.2737982-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - $(MAKETUNING) variable added to ninja build Signed-off-by: Adolf Belka --- lfs/glib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/glib b/lfs/glib index cbf666f70..58c45415a 100644 --- a/lfs/glib +++ b/lfs/glib @@ -75,7 +75,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --sysconfdir=/etc \ -D internal_pcre=false \ 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)