commit: 9d1a34f48d520040c4bc8c091ee37555dfea19dc Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru> AuthorDate: Thu Dec 22 00:47:57 2022 +0000 Commit: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru> CommitDate: Thu Dec 22 00:49:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9d1a34f4
dev-libs/m_cli2: fix compler setup flag typo Closes: https://bugs.gentoo.org/886033 Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru> dev-libs/m_cli2/m_cli2-1.0.0_p20221116.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-libs/m_cli2/m_cli2-1.0.0_p20221116.ebuild b/dev-libs/m_cli2/m_cli2-1.0.0_p20221116.ebuild index 7b8c93452..4097351e9 100644 --- a/dev-libs/m_cli2/m_cli2-1.0.0_p20221116.ebuild +++ b/dev-libs/m_cli2/m_cli2-1.0.0_p20221116.ebuild @@ -26,14 +26,14 @@ src_prepare() { default # # Set Fortran FLAGS - sed -i -e "s/F90FLAGS := .*$/F90FLAGS := ${FCFLAGS} -fPIC/" Makefile || die + sed -i -e 's/F90FLAGS := .*$/F90FLAGS := '"${FCFLAGS}"' -fPIC/' Makefile || die } src_compile() { case $(tc-getFC) in *gfortran* ) emake clean - emake FC90=$(tc-getFC) gfortran + emake F90=$(tc-getFC) gfortran $(tc-getFC) -Wl,-soname,lib"${PN}".so.1 ${LDFLAGS} -shared -o lib"${PN}".so.1 M_CLI2.o;; * ) die "Sorry, only GNU gfortran is currently supported in the ebuild" ;;
