diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2015-05-17 14:02:05 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-05-17 14:07:26 +0200 |
commit | 9f31cd14d01e306e6475b750c30554043c57491a (patch) | |
tree | a1791a7cb34f4c3cdd073448d780253815b13742 | |
parent | 3a07f5e4fe2543f8fbee4cdc680318bc426bd83d (diff) | |
download | buildroot-9f31cd14d01e306e6475b750c30554043c57491a.tar.gz buildroot-9f31cd14d01e306e6475b750c30554043c57491a.zip |
ipmiutil: openssl support needs shared library
Fixes:
http://autobuild.buildroot.net/results/0d4/0d4e0ea8fdb233ea8e86f86b6fa406311a0279e2/
http://autobuild.buildroot.net/results/907/907ae0feb9ad2e4a0da4b38290a2b617cb4360a0/
The ipmiutil buildsystem doesn't take dependencies of libcrypto (E.G. zlib)
into consideration, causing link issues when linking statically.
The build system doesn't handle LIBS, so there is no simple way to fix this
outside patching the buildsystem. As we are very close to the release, lets
just mark it as !static for now.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/ipmiutil/ipmiutil.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/ipmiutil/ipmiutil.mk b/package/ipmiutil/ipmiutil.mk index f03ad9b394..011c0b67a7 100644 --- a/package/ipmiutil/ipmiutil.mk +++ b/package/ipmiutil/ipmiutil.mk @@ -11,7 +11,8 @@ IPMIUTIL_LICENSE_FILES = COPYING # We're patching configure.ac IPMIUTIL_AUTORECONF = YES -ifeq ($(BR2_PACKAGE_OPENSSL),y) +# forgets to link against libcrypto dependencies breaking static link +ifeq ($(BR2_PACKAGE_OPENSSL)x$(BR2_STATIC_LIBS),yx) # tests against distro libcrypto so it might get a false positive when # the openssl version is old, so force it off # SKIP_MD2 can be used only if ALLOW_GNU is defined. |