apkbuild-pypi.in: use $() instead of backticks

This commit is contained in:
sudotac 2023-07-30 21:27:22 +09:00 committed by Natanael Copa
parent 65b5d578b2
commit 00aa9aab12
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ check() {
}
package() {
PYTHONPATH=$pkgdir`python3 -c "import site; print(site.getsitepackages()[0])"` \
PYTHONPATH=$pkgdir$(python3 -c "import site; print(site.getsitepackages()[0])") \
python3 setup.py install \
--prefix=/usr \
--root="$pkgdir" \