diff options
author | Breno Leitao <breno.leitao@gmail.com> | 2017-05-09 14:25:10 +0000 |
---|---|---|
committer | Breno Leitao <breno.leitao@gmail.com> | 2017-05-09 14:25:10 +0000 |
commit | 9be9186999f7407fc97ca3e50d9aee8567381693 (patch) | |
tree | 1fcaa276a08e1e48c814ff1712d815a7542eee94 /testing/crda | |
parent | 5c2a6c34177599cb3d2c5624135de341cdf747c1 (diff) | |
download | aports-9be9186999f7407fc97ca3e50d9aee8567381693.tar.bz2 aports-9be9186999f7407fc97ca3e50d9aee8567381693.tar.xz |
testing/crda: Fix build dependency
crda depends on python but does not have the dependency clearly
required. Causing the following error:
env: can't execute 'python': No such file or directory
make: *** [Makefile:115: keys-gcrypt.c] Error 127
Fixing the dependency chain.
Diffstat (limited to 'testing/crda')
-rw-r--r-- | testing/crda/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/crda/APKBUILD b/testing/crda/APKBUILD index f6e11ea8aa..c8598f594b 100644 --- a/testing/crda/APKBUILD +++ b/testing/crda/APKBUILD @@ -8,7 +8,7 @@ url="http://www.linuxwireless.org/en/developers/Regulatory/CRDA/" arch="all" license="GPL" depends="wireless-regdb" -makedepends="linux-headers libnl-dev py-m2crypto libgcrypt-dev" +makedepends="linux-headers libnl-dev py2-m2crypto libgcrypt-dev python" subpackages="$pkgname-dev $pkgname-doc" source="http://kernel.org/pub/software/network/crda/crda-3.18.tar.xz 01-Makefile-dont-run-ldconfig.patch" |