diff options
author | Benda Xu <heroxbd@gentoo.org> | 2018-11-26 21:39:03 +0800 |
---|---|---|
committer | Benda Xu <heroxbd@gentoo.org> | 2018-11-26 21:39:20 +0800 |
commit | 5c377b713d151c2fc9c67bf9f78844ba6f7dda4e (patch) | |
tree | 2ac2c855d78b144597875520faaa624ee7bd0e41 /dev-libs/libutf8proc | |
parent | dev-util/netsurf-buildsystem: fix Prefix regression from netsurf.eclass (diff) | |
download | gentoo-5c377b713d151c2fc9c67bf9f78844ba6f7dda4e.tar.gz gentoo-5c377b713d151c2fc9c67bf9f78844ba6f7dda4e.tar.bz2 gentoo-5c377b713d151c2fc9c67bf9f78844ba6f7dda4e.zip |
dev-libs/libutf8proc: fix Prefix regression introduced in -r1.
Reference: https://archives.gentoo.org/gentoo-dev/message/776d6a128da1c7cfcdc5aa36e8bf83ae
Signed-off-by: Benda Xu <heroxbd@gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Diffstat (limited to 'dev-libs/libutf8proc')
-rw-r--r-- | dev-libs/libutf8proc/libutf8proc-2.2.0_p1-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-libs/libutf8proc/libutf8proc-2.2.0_p1-r1.ebuild b/dev-libs/libutf8proc/libutf8proc-2.2.0_p1-r1.ebuild index bfc2a2dc1b40..eeecdc8fec71 100644 --- a/dev-libs/libutf8proc/libutf8proc-2.2.0_p1-r1.ebuild +++ b/dev-libs/libutf8proc/libutf8proc-2.2.0_p1-r1.ebuild @@ -20,7 +20,7 @@ DEPEND="dev-util/netsurf-buildsystem" S="${WORKDIR}/${MY_P}" _emake() { - source /usr/share/netsurf-buildsystem/gentoo-helpers.sh + source "${EPREFIX}"/usr/share/netsurf-buildsystem/gentoo-helpers.sh netsurf_define_makeconf emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@ } @@ -30,5 +30,5 @@ src_compile() { } src_install() { - _emake DESTDIR="${ED}" install + _emake DESTDIR="${D}" install } |