mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
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:
committed by
Sam James
parent
51df83bee9
commit
278610cc5d
@@ -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
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user