瀏覽代碼

package/optee-test: add deps on openssl when enabled

Add a dependency on openssl upon BR2_PACKAGE_LIBOPENSSL=y to
enable some for OP-TEE embedded tests.

Building with libressl makes the optee-test test tool fail on a
certificate test; so we explicitly depend on libopenssl.

Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
[yann.morin.1998@free.fr:
  - match the depenency to libopenssl, since that's is what is used in
    the condition (BR2_PACKAGE_LIBOPENSSL)
  - add a blurb to explain why libopenssl is used, not the virutal
    openssl
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Etienne Carriere 4 年之前
父節點
當前提交
b2821ca786
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      package/optee-test/optee-test.mk

+ 4 - 0
package/optee-test/optee-test.mk

@@ -11,6 +11,10 @@ OPTEE_TEST_LICENSE_FILES = LICENSE.md
 
 
 OPTEE_TEST_DEPENDENCIES = optee-client optee-os
 OPTEE_TEST_DEPENDENCIES = optee-client optee-os
 
 
+ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
+OPTEE_TEST_DEPENDENCIES += libopenssl
+endif
+
 OPTEE_TEST_CONF_OPTS = -DOPTEE_TEST_SDK=$(OPTEE_OS_SDK)
 OPTEE_TEST_CONF_OPTS = -DOPTEE_TEST_SDK=$(OPTEE_OS_SDK)
 
 
 # Trusted Application are not built from CMake due to ta_dev_kit
 # Trusted Application are not built from CMake due to ta_dev_kit