diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-03-28 23:23:36 +0000 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-03-29 12:31:48 +0200 |
commit | 4077e06e6e7b3e4bf430f75e5883eb2c8cb1a95d (patch) | |
tree | 3ae3ed01f94954a48bd12142f579c99835a86e20 | |
parent | 24fd52ea9d66b20b93fec80549192356033d828b (diff) | |
download | aports-4077e06e6e7b3e4bf430f75e5883eb2c8cb1a95d.tar.bz2 aports-4077e06e6e7b3e4bf430f75e5883eb2c8cb1a95d.tar.xz |
comunity/libteam: fix path when changing directory
Adjust path to a valid one when changing directory
-rw-r--r-- | community/libteam/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/libteam/APKBUILD b/community/libteam/APKBUILD index 7949eff514..d54e108e51 100644 --- a/community/libteam/APKBUILD +++ b/community/libteam/APKBUILD @@ -49,7 +49,7 @@ py() { python2 ./setup.py build || return 1 cd ../python3 python3 ./setup.py build || return 1 - cd binding/python + cd ../python python2 ./setup.py install --root "$subpkgdir" -O1 || return 1 cd ../python3 python3 ./setup.py install --root "$subpkgdir" -O1 || return 1 |