diff options
author | xtkoba <69125751+xtkoba@users.noreply.github.com> | 2023-08-11 13:24:16 +0900 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-09-06 10:44:48 +0100 |
commit | 24f82a887ea97c9921a862c3770da11a8d0f734e (patch) | |
tree | 83df61a3d0e4ab52fdcbf9b7baecc1b55c98b8e8 /profiles/embedded | |
parent | dev-db/psqlodbc: add 15.00.0000 (diff) | |
download | gentoo-24f82a887ea97c9921a862c3770da11a8d0f734e.tar.gz gentoo-24f82a887ea97c9921a862c3770da11a8d0f734e.tar.bz2 gentoo-24f82a887ea97c9921a862c3770da11a8d0f734e.zip |
profiles: restore KERNEL=Winnt for embedded targets
which is needed to cross-merge packages using CMake for MinGW.
cmake.eclass assumes kernel_Winnt is available at
https://github.com/gentoo/gentoo/blob/729bfdc91020c5c37ca1d0217135bd8b23df660a/eclass/cmake.eclass#L478-L496.
Closes: https://bugs.gentoo.org/910605
Signed-off-by: Tee KOBAYASHI <xtkoba@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32252
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'profiles/embedded')
-rw-r--r-- | profiles/embedded/make.defaults | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/profiles/embedded/make.defaults b/profiles/embedded/make.defaults index e3d7f8df25cb..62ad2b513982 100644 --- a/profiles/embedded/make.defaults +++ b/profiles/embedded/make.defaults @@ -24,7 +24,8 @@ USE_EXPAND_UNPREFIXED="ARCH" USE_EXPAND_IMPLICIT="ARCH ELIBC KERNEL" USE_EXPAND_VALUES_ARCH="alpha amd64 amd64-linux arm arm64 hppa ia64 loong m68k mips ppc ppc64 ppc64-linux ppc-macos riscv s390 sparc x64-macos x64-solaris x86 x86-linux" USE_EXPAND_VALUES_ELIBC="bionic Darwin glibc mingw musl SunOS" -USE_EXPAND_VALUES_KERNEL="Darwin linux SunOS" +# Note that we keep Winnt here for cross, especially for cmake.eclass (bug #910605) +USE_EXPAND_VALUES_KERNEL="Darwin linux SunOS Winnt" # Env vars to expand into USE vars. Modifying this requires prior # discussion on gentoo-dev@lists.gentoo.org. |