diff options
Diffstat (limited to 'testing/websockify')
-rw-r--r-- | testing/websockify/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/websockify/APKBUILD b/testing/websockify/APKBUILD index 2522ac633a..f04cc45ffb 100644 --- a/testing/websockify/APKBUILD +++ b/testing/websockify/APKBUILD @@ -27,12 +27,12 @@ prepare() { build() { cd "$_builddir" - python setup.py build || return 1 + python2 setup.py build || return 1 } package() { cd "$_builddir" - python setup.py install --prefix=/usr --root="$pkgdir" || return 1 + python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1 } py() { |