diff options
author | Guilherme Amadio <amadio@gentoo.org> | 2018-08-08 12:02:07 +0200 |
---|---|---|
committer | Guilherme Amadio <amadio@gentoo.org> | 2018-08-08 12:03:01 +0200 |
commit | 2974eda51bea48e4b6bec7c0dd79e21c5351dfd6 (patch) | |
tree | 192da9d65c2d874ee6169ca6968a16d64d7dc7cb /dev-util/astyle | |
parent | app-editors/okteta: 0.25.2 version bump (diff) | |
download | gentoo-2974eda51bea48e4b6bec7c0dd79e21c5351dfd6.tar.gz gentoo-2974eda51bea48e4b6bec7c0dd79e21c5351dfd6.tar.bz2 gentoo-2974eda51bea48e4b6bec7c0dd79e21c5351dfd6.zip |
dev-util/astyle: fix on prefix
Ebuild functions like dosym already prepend ${EPREFIX},
so it should not be added in this case (leads to double prefix).
Package-Manager: Portage-2.3.45, Repoman-2.3.10
Diffstat (limited to 'dev-util/astyle')
-rw-r--r-- | dev-util/astyle/astyle-3.1-r2.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-util/astyle/astyle-3.1-r2.ebuild b/dev-util/astyle/astyle-3.1-r2.ebuild index 4394e1defb22..cc2092626326 100644 --- a/dev-util/astyle/astyle-3.1-r2.ebuild +++ b/dev-util/astyle/astyle-3.1-r2.ebuild @@ -54,7 +54,7 @@ src_install() { local libastylename="lib${PN}.so.${PV}.0" local libastylejname="lib${PN}j.so.${PV}.0" - local libdestdir="${EPREFIX}/usr/$(get_libdir)" + local libdestdir="/usr/$(get_libdir)" dolib.so "${libastylename}" dosym "${libastylename}" "${libdestdir}/lib${PN}.so.$(get_major_version)" |