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 | |
parent | 56c926223e81d6f658047afe85084337d4f6f8f7 (diff) | |
download | mtk-20170518-3d6a411f1408f364e768b9f0aca9ad3cf587f912.zip mtk-20170518-3d6a411f1408f364e768b9f0aca9ad3cf587f912.tar.gz mtk-20170518-3d6a411f1408f364e768b9f0aca9ad3cf587f912.tar.bz2 |
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
-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 32bcf2b..4da4d46 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 |