Diff mercury-20.06-r1 with a mercury-20.06.1

/usr/portage/dev-lang/mercury/mercury-20.06.1.ebuild 2023-10-09 14:52:29.464368349 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
5 5

  
6 6
inherit autotools elisp-common flag-o-matic java-pkg-opt-2 multilib vcs-clean xdg-utils
7 7

  
8
PATCHSET_VER="3"
8
PATCHSET_VER="0"
9 9
MY_P=${PN}-srcdist-${PV}
10 10

  
11 11
DESCRIPTION="Mercury is a modern general-purpose logic/functional programming language"
......
15 15

  
16 16
LICENSE="GPL-2 LGPL-2"
17 17
SLOT="0"
18
KEYWORDS="amd64 x86"
18
KEYWORDS="~amd64 ~x86"
19 19

  
20 20
IUSE="debug doc emacs erlang examples java mono profile readline threads trail"
21 21

  
......
63 63

  
64 64
src_compile() {
65 65
	# Prepare mmake flags
66
	echo "EXTRA_CFLAGS = ${CFLAGS}"  >> Mmake.params
66
	echo "EXTRA_CFLAGS = ${CFLAGS} -Wno-error"  >> Mmake.params
67 67
	echo "EXTRA_LDFLAGS = ${LDFLAGS}" >> Mmake.params
68 68
	echo "EXTRA_LD_LIBFLAGS = ${LDFLAGS}" >> Mmake.params
69 69
	echo "EXTRA_MLFLAGS = --no-strip" >> Mmake.params
Thank you!