diff options
author | Alessio Cascone <alessio.cascone@vimar.com> | 2025-01-29 08:31:29 +0100 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2025-03-13 07:21:44 -0700 |
commit | 50beb7bdeca964ef1eabcb3c081bb9c6337dd993 (patch) | |
tree | 7d67ae044193f2f8edf9b3c9f36b45b300ea48e1 | |
parent | 9e24e8f814fb85cf7919e2993a667edc7e531272 (diff) | |
download | poky-50beb7bdeca964ef1eabcb3c081bb9c6337dd993.tar.gz |
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 <alessio.cascone@vimar.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b3cdfca5ef84ed2054faef9abddef3aeed930e17)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r-- | meta/recipes-extended/timezone/tzcode-native.bb | 2 |
1 files changed, 1 insertions, 1 deletions
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" | |||
4 | 4 | ||
5 | inherit native | 5 | inherit native |
6 | 6 | ||
7 | EXTRA_OEMAKE += "cc='${CC}'" | 7 | EXTRA_OEMAKE += "CC='${CC}'" |
8 | 8 | ||
9 | do_install () { | 9 | do_install () { |
10 | install -d ${D}${bindir}/ | 10 | install -d ${D}${bindir}/ |