From mboxrd@z Thu Jan 1 00:00:00 1970 From: Norbert Lange Date: Tue, 15 Sep 2020 12:05:44 +0200 Subject: [Buildroot] [PATCH v2 2/3] package/meson: use specific BR variables for cross-compilation.conf In-Reply-To: <20200915100546.806157-1-nolange79@gmail.com> References: <20200915100546.806157-1-nolange79@gmail.com> Message-ID: <20200915100546.806157-2-nolange79@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net dont depend on specific names of compiler tools, but use existing Buildroot variables. Signed-off-by: Norbert Lange --- package/meson/cross-compilation.conf.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package/meson/cross-compilation.conf.in b/package/meson/cross-compilation.conf.in index e9344e2b2f..67c5da8156 100644 --- a/package/meson/cross-compilation.conf.in +++ b/package/meson/cross-compilation.conf.in @@ -4,11 +4,11 @@ # - Buildroot's 'target' is Meson's 'host' [binaries] -c = '@TARGET_CROSS at gcc' -cpp = '@TARGET_CROSS at g++' -ar = '@TARGET_CROSS at ar' -strip = '@TARGET_CROSS at strip' -pkgconfig = '@HOST_DIR@/bin/pkgconf' +c = '@TARGET_CC@' +cpp = '@TARGET_CXX@' +ar = '@TARGET_AR@' +strip = '@TARGET_STRIP@' +pkgconfig = '@PKG_CONFIG_HOST_BINARY@' g-ir-compiler = '@STAGING_DIR@/usr/bin/g-ir-compiler' g-ir-scanner = '@STAGING_DIR@/usr/bin/g-ir-scanner' -- 2.28.0