Diff fzy-1.0-r1 with a fzy-9999

/usr/portage/app-text/fzy/fzy-9999.ebuild 2023-10-09 14:52:28.876368335 +0300
10 10
	EGIT_REPO_URI="https://github.com/jhawthorn/fzy.git"
11 11
else
12 12
	SRC_URI="https://github.com/jhawthorn/${PN}/releases/download/${PV}/${P}.tar.gz"
13
	KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86"
13
	KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
14 14
fi
15 15

  
16 16
DESCRIPTION="Fuzzy text selector (interactive grep) for console"
......
21 21
IUSE="test"
22 22
RESTRICT="!test? ( test )"
23 23

  
24
PATCHES=( "${FILESDIR}"/1.0-cflags.patch )
25

  
26 24
src_prepare() {
27 25
	default
28 26
	restore_config config.h
29 27
	tc-export CC
28
	sed -i 's/$(LIBS)/$(LIBS) $(LDFLAGS)/g' Makefile || die
30 29
}
31 30

  
32 31
src_install() {
Thank you!