From 278610cc5d82ae613cfca5d57ac21227ea313b2a Mon Sep 17 00:00:00 2001 From: Thomas Bracht Laumann Jespersen Date: Wed, 8 Jun 2022 09:47:42 +0200 Subject: app-editors/qhexedit2: fix unquoted variable S Signed-off-by: Thomas Bracht Laumann Jespersen Signed-off-by: Sam James --- app-editors/qhexedit2/qhexedit2-0.8.6_p20190316-r2.ebuild | 4 ++-- app-editors/qhexedit2/qhexedit2-0.8.9_p20210525-r2.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'app-editors') diff --git a/app-editors/qhexedit2/qhexedit2-0.8.6_p20190316-r2.ebuild b/app-editors/qhexedit2/qhexedit2-0.8.6_p20190316-r2.ebuild index 4b1b99b7663b..094aed04481c 100644 --- a/app-editors/qhexedit2/qhexedit2-0.8.6_p20190316-r2.ebuild +++ b/app-editors/qhexedit2/qhexedit2-0.8.6_p20190316-r2.ebuild @@ -66,7 +66,7 @@ src_compile() { if use python; then export PATH="$(qt5_get_bindir):${PATH}" python_build() { - pushd ${S} || die + pushd "${S}" || die sip-build || die popd || die } @@ -88,7 +88,7 @@ src_install() { dolib.so libqhexedit.so* if use python; then python_install() { - pushd ${S}/build || die + pushd "${S}"/build || die emake INSTALL_ROOT="${D}" install popd || die } diff --git a/app-editors/qhexedit2/qhexedit2-0.8.9_p20210525-r2.ebuild b/app-editors/qhexedit2/qhexedit2-0.8.9_p20210525-r2.ebuild index 41bace650608..731f3fb8d1af 100644 --- a/app-editors/qhexedit2/qhexedit2-0.8.9_p20210525-r2.ebuild +++ b/app-editors/qhexedit2/qhexedit2-0.8.9_p20210525-r2.ebuild @@ -68,7 +68,7 @@ src_compile() { if use python; then export PATH="$(qt5_get_bindir):${PATH}" python_build() { - pushd ${S} || die + pushd "${S}" || die sip-build || die popd || die } @@ -90,7 +90,7 @@ src_install() { dolib.so libqhexedit.so* if use python; then python_install() { - pushd ${S}/build || die + pushd "${S}"/build || die emake INSTALL_ROOT="${D}" install popd || die } -- cgit v1.2.3-65-gdbad