From 50beb7bdeca964ef1eabcb3c081bb9c6337dd993 Mon Sep 17 00:00:00 2001 From: Alessio Cascone Date: Wed, 29 Jan 2025 08:31:29 +0100 Subject: tzcode-native: Fix compiler setting from 2023d version Starting from 2023d version, tzcode makefile does not use anymore "cc" variable for C compiler, due to Makefile refactoring. Replacing "cc" with "CC" fixes the issue. (From OE-Core rev: 7adb3079430af789f73550eba2da2495b30e78a4) Signed-off-by: Alessio Cascone Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie (cherry picked from commit b3cdfca5ef84ed2054faef9abddef3aeed930e17) Signed-off-by: Steve Sakoman --- meta/recipes-extended/timezone/tzcode-native.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/timezone/tzcode-native.bb b/meta/recipes-extended/timezone/tzcode-native.bb index d0b23a9d80..dc9f076377 100644 --- a/meta/recipes-extended/timezone/tzcode-native.bb +++ b/meta/recipes-extended/timezone/tzcode-native.bb @@ -4,7 +4,7 @@ SUMMARY = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect" inherit native -EXTRA_OEMAKE += "cc='${CC}'" +EXTRA_OEMAKE += "CC='${CC}'" do_install () { install -d ${D}${bindir}/ -- cgit v1.2.3-54-g00ecf