diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-09-11 16:31:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-09-11 16:31:01 +0000 |
commit | 3d6a411f1408f364e768b9f0aca9ad3cf587f912 (patch) | |
tree | cfc12c47b35569caabf54426941d21b9fb843ade /package/system/opkg | |
parent | 56c926223e81d6f658047afe85084337d4f6f8f7 (diff) | |
download | upstream-3d6a411f1408f364e768b9f0aca9ad3cf587f912.tar.gz upstream-3d6a411f1408f364e768b9f0aca9ad3cf587f912.tar.bz2 upstream-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/Makefile | 2 |
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 |