diff options
author | Koen Kooi <koen@openembedded.org> | 2010-08-29 15:11:23 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-08-29 15:11:23 +0200 |
commit | 26b7d6514111d5ac0171c1834fa85d4576d783bf (patch) | |
tree | 398127076d6c9ce2c2a6660e826b28591975e84d | |
parent | 768611b6c8b8a077dbe7891acfcd1dd736dbf49e (diff) |
openssl: move cnf file to -misc making different libcrypto versions parallel installable
-rw-r--r-- | recipes/openssl/openssl.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/openssl/openssl.inc b/recipes/openssl/openssl.inc index 7fd7ea0c29..b6f0c79dd4 100644 --- a/recipes/openssl/openssl.inc +++ b/recipes/openssl/openssl.inc @@ -8,7 +8,7 @@ S = "${WORKDIR}/openssl-${PV}" inherit siteinfo -INC_PR = "r12" +INC_PR = "r13" AR_append = " r" CFLAG = "${@base_conditional('SITEINFO_ENDIANNESS', 'le', '-DL_ENDIAN', '-DB_ENDIAN', d)} \ @@ -23,9 +23,9 @@ export EX_LIBS = "-lgcc -ldl" export AS = "${CC} -c" PACKAGES =+ "libcrypto libssl ${PN}-misc" -FILES_libcrypto = "${libdir}/libcrypto.so.* ${libdir}/ssl/openssl.cnf" +FILES_libcrypto = "${libdir}/libcrypto.so.*" FILES_libssl = "${libdir}/libssl.so.*" -FILES_${PN}-misc = "${libdir}/ssl/misc" +FILES_${PN}-misc = "${libdir}/ssl/misc ${libdir}/ssl/openssl.cnf" do_configure () { cd util |