commit: e22c514afa6a6c6991bdd28e87254355d5d90bad Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Sat Sep 9 19:21:23 2023 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Sep 14 05:30:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e22c514a
perl-module.eclass: fix Unquoted Variable Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/32703 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> eclass/perl-module.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index 35f85a813fc7..e2b66e3b6f7d 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.eclass @@ -254,7 +254,7 @@ perl-module_src_configure() { elif [[ -f Makefile.PL ]] ; then einfo "Using ExtUtils::MakeMaker" set -- \ - PREFIX=${EPREFIX}/usr \ + PREFIX="${EPREFIX}"/usr \ INSTALLDIRS=vendor \ INSTALLMAN3DIR='none' \ DESTDIR="${D}" \
