commit: f55a2723898c2cdc4e61a9ca06ef51b694877233 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Thu Apr 5 22:57:35 2018 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Thu Apr 5 22:57:35 2018 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=f55a2723
wrappers: fix use.force flag overrides Flags should be one per line, not multiple: --- Invalid USE flag in 'use.force': '-kernel_linux kernel_linux' Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org> wrappers/etc/portage/profile/use.force | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wrappers/etc/portage/profile/use.force b/wrappers/etc/portage/profile/use.force index 155b31d..a3a1ab8 100644 --- a/wrappers/etc/portage/profile/use.force +++ b/wrappers/etc/portage/profile/use.force @@ -1 +1,2 @@ --kernel_linux __USE_FORCE_KERNEL__ +-kernel_linux +__USE_FORCE_KERNEL__
