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 08:50:03 -0700 |
| commit | dcbf2ff5dc783568ab036bd144e4e1f924823e6a (patch) | |
| tree | a1d4bfc9a6ef0d8c6684b01b40ce8e57452a74fd | |
| parent | 9d5661c616dd5899d6e54bf3fd35e397913923be (diff) | |
| download | poky-dcbf2ff5dc783568ab036bd144e4e1f924823e6a.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: 0216c229d5c60d0023b0a7d6e8ee41bdfa16f8ef)
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}/ |
