diff options
author | Thomas Bracht Laumann Jespersen <t@laumann.xyz> | 2022-06-08 10:03:28 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-16 17:30:25 +0100 |
commit | 02f137147d15a98efbf637b2045619820b4cb49d (patch) | |
tree | d8a9ce1008bbcd35f6d4984845b45b95b60be140 /dev-lang/teyjus | |
parent | dev-lang/mlton: fix unquoted variable S (diff) | |
download | gentoo-02f137147d15a98efbf637b2045619820b4cb49d.tar.gz gentoo-02f137147d15a98efbf637b2045619820b4cb49d.tar.bz2 gentoo-02f137147d15a98efbf637b2045619820b4cb49d.zip |
dev-lang/teyjus: fix unquoted variable EPREFIX
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-lang/teyjus')
-rw-r--r-- | dev-lang/teyjus/teyjus-2.1-r1.ebuild | 2 | ||||
-rw-r--r-- | dev-lang/teyjus/teyjus-2.1.ebuild | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dev-lang/teyjus/teyjus-2.1-r1.ebuild b/dev-lang/teyjus/teyjus-2.1-r1.ebuild index 508113c464bd..7e48f5daab8f 100644 --- a/dev-lang/teyjus/teyjus-2.1-r1.ebuild +++ b/dev-lang/teyjus/teyjus-2.1-r1.ebuild @@ -85,7 +85,7 @@ src_install() { if use emacs ; then elisp-install ${PN} emacs/*.{el,elc} cp "${FILESDIR}"/${SITEFILE} "${S}" - sed -e 's@/usr/bin/tjcc@'${EPREFIX}/usr/bin/tjcc'@' -i ${SITEFILE} \ + sed -e "s@/usr/bin/tjcc@${EPREFIX}/usr/bin/tjcc@" -i ${SITEFILE} \ || die "Could not set tjcc executable path in emacs site file" elisp-site-file-install ${SITEFILE} fi diff --git a/dev-lang/teyjus/teyjus-2.1.ebuild b/dev-lang/teyjus/teyjus-2.1.ebuild index a571b19301d1..ba530e02034d 100644 --- a/dev-lang/teyjus/teyjus-2.1.ebuild +++ b/dev-lang/teyjus/teyjus-2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -83,7 +83,7 @@ src_install() { if use emacs ; then elisp-install ${PN} emacs/*.{el,elc} cp "${FILESDIR}"/${SITEFILE} "${S}" - sed -e 's@/usr/bin/tjcc@'${EPREFIX}/usr/bin/tjcc'@' -i ${SITEFILE} \ + sed -e "s@/usr/bin/tjcc@${EPREFIX}/usr/bin/tjcc@" -i ${SITEFILE} \ || die "Could not set tjcc executable path in emacs site file" elisp-site-file-install ${SITEFILE} fi |