summaryrefslogtreecommitdiffstats
path: root/package/system/opkg
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-09-11 16:31:01 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-09-11 16:31:01 +0000
commit3d6a411f1408f364e768b9f0aca9ad3cf587f912 (patch)
treecfc12c47b35569caabf54426941d21b9fb843ade /package/system/opkg
parent56c926223e81d6f658047afe85084337d4f6f8f7 (diff)
downloadmaster-31e0f0ae-3d6a411f1408f364e768b9f0aca9ad3cf587f912.tar.gz
master-31e0f0ae-3d6a411f1408f364e768b9f0aca9ad3cf587f912.tar.bz2
master-31e0f0ae-3d6a411f1408f364e768b9f0aca9ad3cf587f912.zip
opkg: work around unconditional libopenssl build dependency
As the OpenWrt build system only resolves build dependencies per directory, all opkg variants were causing libopenssl to be downloaded and built, not only opkg-smime. Fix this by applying the same workaround as in ustream-ssl. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net> SVN-Revision: 46850
Diffstat (limited to 'package/system/opkg')
-rw-r--r--package/system/opkg/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/system/opkg/Makefile b/package/system/opkg/Makefile
index 32bcf2bdf1..4da4d46837 100644
--- a/package/system/opkg/Makefile
+++ b/package/system/opkg/Makefile
@@ -72,7 +72,7 @@ endef
define Package/opkg-smime
$(call Package/opkg/Default)
TITLE+= (with S/MIME signature support)
- DEPENDS+=+libopenssl
+ DEPENDS+=+PACKAGE_opkg-smime:libopenssl
VARIANT:=smime
endef