diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-10 01:36:24 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-11 12:14:40 +0200 |
commit | e7c89a1433a271e9cc052231d531046d7d48f70b (patch) | |
tree | d82d7f4b162d1718861d1539c851b837866fa50b /test | |
parent | b9271ca2a9c49ce7867039a3b932c6c74f578fb9 (diff) | |
download | apk-tools-e7c89a1433a271e9cc052231d531046d7d48f70b.tar.gz apk-tools-e7c89a1433a271e9cc052231d531046d7d48f70b.tar.bz2 apk-tools-e7c89a1433a271e9cc052231d531046d7d48f70b.tar.xz apk-tools-e7c89a1433a271e9cc052231d531046d7d48f70b.zip |
test: fix target $(repos), PKGDEST is no longer supported
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index b59a456..7aaed9f 100644 --- a/test/Makefile +++ b/test/Makefile @@ -21,7 +21,7 @@ $(repos): @cd $@ &&\ for i in */APKBUILD; do\ ( cd $${i%/*} && \ - PKGDEST="$$PWD/.." abuild -R ) >> ../repos.out 2>&1 || exit 1;\ + REPODEST="$$PWD/../.." abuild -R ) >> ../repos.out 2>&1 || exit 1;\ done @cd $@ &&\ ( apk index -o APKINDEX.tar.gz *.apk &&\ |