diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2011-02-03 09:55:48 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-02-23 23:31:49 +0100 |
commit | d17c1652808829bfc354683854c7170b90f7f127 (patch) | |
tree | 913966545e5be20dc101fa01caedb5a737328d9e /package/openssl/openssl.mk | |
parent | 2b41d7f4939b98cba5fbddda6fb7e7bba4ca8fd1 (diff) | |
download | buildroot-novena-d17c1652808829bfc354683854c7170b90f7f127.tar.gz buildroot-novena-d17c1652808829bfc354683854c7170b90f7f127.zip |
openssl: fix libdir issue
Closes #3205
OpenSSL's build system tries to be too wise for it's own good when
guessing what libdir should be.
This causes problems like the one reported in bug #3205 so just specify
libdir to point to /lib (since it's prefixed it would finally be
/usr/lib) since it should be present on 32 and 64 bit targets.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/openssl/openssl.mk')
-rw-r--r-- | package/openssl/openssl.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/openssl/openssl.mk b/package/openssl/openssl.mk index bf924cbf6..7bf347ad8 100644 --- a/package/openssl/openssl.mk +++ b/package/openssl/openssl.mk @@ -47,6 +47,7 @@ define OPENSSL_CONFIGURE_CMDS linux-$(OPENSSL_TARGET_ARCH) \ --prefix=/usr \ --openssldir=/etc/ssl \ + --libdir=/lib \ threads \ shared \ no-idea \ |