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>
This commit is contained in:
parent
2b41d7f493
commit
d17c165280
1
CHANGES
1
CHANGES
@ -25,6 +25,7 @@
|
|||||||
|
|
||||||
Issues resolved (http://bugs.uclibc.org):
|
Issues resolved (http://bugs.uclibc.org):
|
||||||
|
|
||||||
|
#3205: Failing chmod when running "make" in buildroot (openssl)...
|
||||||
#3283: See why nfs-utils needs fakeroot, and convert to autotools
|
#3283: See why nfs-utils needs fakeroot, and convert to autotools
|
||||||
|
|
||||||
2011.02-rc1, Released February 14th, 2011:
|
2011.02-rc1, Released February 14th, 2011:
|
||||||
|
@ -47,6 +47,7 @@ define OPENSSL_CONFIGURE_CMDS
|
|||||||
linux-$(OPENSSL_TARGET_ARCH) \
|
linux-$(OPENSSL_TARGET_ARCH) \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--openssldir=/etc/ssl \
|
--openssldir=/etc/ssl \
|
||||||
|
--libdir=/lib \
|
||||||
threads \
|
threads \
|
||||||
shared \
|
shared \
|
||||||
no-idea \
|
no-idea \
|
||||||
|
Loading…
Reference in New Issue
Block a user