From patchwork Mon Jan 30 12:15:17 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 6474 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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4P56Zj52Chz3wfd for ; Mon, 30 Jan 2023 12:15:25 +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 4P56Zg4Y46ztF; Mon, 30 Jan 2023 12:15:23 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4P56Zg3WD8z2yT5; Mon, 30 Jan 2023 12:15:23 +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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4P56Zg00Rjz2xSs for ; Mon, 30 Jan 2023 12:15:22 +0000 (UTC) Received: from michael.haj.ipfire.org (michael.haj.ipfire.org [172.28.1.242]) (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 "michael.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4P56Zd6sDdz17q; Mon, 30 Jan 2023 12:15:21 +0000 (UTC) Received: by michael.haj.ipfire.org (Postfix, from userid 0) id 4P56Zd5Cg7zTjCC; Mon, 30 Jan 2023 12:15:21 +0000 (UTC) From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 3/6] ccache: Use the correct header files from the toolchain Date: Mon, 30 Jan 2023 12:15:17 +0000 Message-Id: <20230130121520.4038402-4-michael.tremer@ipfire.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20230130121520.4038402-1-michael.tremer@ipfire.org> References: <20230130121520.4038402-1-michael.tremer@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: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Michael Tremer --- lfs/ccache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/ccache b/lfs/ccache index 2fe2328e2..db1e4da31 100644 --- a/lfs/ccache +++ b/lfs/ccache @@ -74,7 +74,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && mkdir -pv build cd $(DIR_APP)/build && cmake \ -DCMAKE_INSTALL_PREFIX=$(TOOLS_DIR) \ - -DCMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES=$(TOOLS_DIR)/include \ + -DCMAKE_INCLUDE_PATH=$(TOOLS_DIR)/include \ .. cd $(DIR_APP)/build && make $(MAKETUNING) VERBOSE=1 cd $(DIR_APP)/build && make install