app-editors/qhexedit2: fix unquoted variable S

Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Thomas Bracht Laumann Jespersen
2022-06-08 09:47:42 +02:00
committed by Sam James
parent 51df83bee9
commit 278610cc5d
2 changed files with 4 additions and 4 deletions

View File

@@ -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
}

View File

@@ -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
}