From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: From: Markus Niebel Date: Tue, 25 Nov 2014 14:25:28 +0100 Message-Id: <1416921928-1969-1-git-send-email-list-09_ptxdist@tqsc.de> Subject: [ptxdist] [PATCH] host-open-ssl: fix lib install on 64 Bit host Reply-To: ptxdist@pengutronix.de List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: ptxdist-bounces@pengutronix.de Errors-To: ptxdist-bounces@pengutronix.de To: ptxdist@pengutronix.de Cc: m.olbrich@pengutronix.de, Markus Niebel From: Markus Niebel openssl installs to lib64 on x84_64 when --libdir is not given. Set libdir to /lib to have libcrypto and libssl on the right place. Signed-off-by: Markus Niebel --- rules/host-openssl.make | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rules/host-openssl.make b/rules/host-openssl.make index 4ca1ce5..c6ffbed 100644 --- a/rules/host-openssl.make +++ b/rules/host-openssl.make @@ -34,7 +34,8 @@ HOST_OPENSSL_MAKE_PAR := NO # no ':=' here HOST_OPENSSL_CONF_OPT = \ --prefix=/ \ - --install_prefix=$(HOST_OPENSSL_PKGDIR) + --install_prefix=$(HOST_OPENSSL_PKGDIR) \ + --libdir=/lib HOST_OPENSSL_INSTALL_OPT := \ install_sw -- 2.1.1 -- ptxdist mailing list ptxdist@pengutronix.de