diff options
author | Ulrich Müller <ulm@gentoo.org> | 2017-04-17 11:51:46 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2017-04-17 12:01:38 +0200 |
commit | 62a4ef94dfccd1d94c9142471d1cab56b3ff85bd (patch) | |
tree | 9e69c480f83fde944bc0e231e66e701fcb8176c3 /app-emacs | |
parent | media-video/vlc: add := dep on opencv (diff) | |
download | gentoo-62a4ef94dfccd1d94c9142471d1cab56b3ff85bd.tar.gz gentoo-62a4ef94dfccd1d94c9142471d1cab56b3ff85bd.tar.bz2 gentoo-62a4ef94dfccd1d94c9142471d1cab56b3ff85bd.zip |
app-emacs/slime: Use complete path as second argument of dosym.
Add missing EPREFIX to first argument of dosym.
PMS reference: https://projects.gentoo.org/pms/6/pms.html#x1-13800011.3.3.9
Bug: 379899
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/slime/slime-2.0_p20101103.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app-emacs/slime/slime-2.0_p20101103.ebuild b/app-emacs/slime/slime-2.0_p20101103.ebuild index 82ae40d4f471..08e07702bc24 100644 --- a/app-emacs/slime/slime-2.0_p20101103.ebuild +++ b/app-emacs/slime/slime-2.0_p20101103.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=3 @@ -65,7 +65,8 @@ src_install() { insinto "${CLSOURCEROOT%/}/swank" doins *.lisp swank.asd || die dodir "${CLSYSTEMROOT}" || die - dosym "${CLSOURCEROOT%/}/swank/swank.asd" "${CLSYSTEMROOT}" || die + dosym "${EPREFIX}${CLSOURCEROOT%/}/swank/swank.asd" \ + "${CLSYSTEMROOT%/}/swank.asd" || die ## install contribs elisp-install ${PN}/contrib/ contrib/*.{el,elc,scm,goo} || die |