diff options
author | Romain Naour <romain.naour@openwide.fr> | 2015-05-16 01:06:28 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-05-16 15:14:48 +0200 |
commit | 25e15fd17fa51a79b40159629dea1eea7b5f8d96 (patch) | |
tree | ec2ba771ec37148efcf34a812dfd3007118dd69e /package | |
parent | a138be5d701685a6e3122fb61f267c28f18c0771 (diff) | |
download | buildroot-25e15fd17fa51a79b40159629dea1eea7b5f8d96.tar.gz buildroot-25e15fd17fa51a79b40159629dea1eea7b5f8d96.zip |
package/ipmiutil: really force md2 off
If ALLOW_GNU is not defined, SKIP_MD2 is a nop.
Fixes:
http://autobuild.buildroot.net/results/f606ec1fff4cea257a4c6274bc5603efdfc439ad/
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package')
-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 c3d791cc38..c7a8dd83be 100644 --- a/package/ipmiutil/ipmiutil.mk +++ b/package/ipmiutil/ipmiutil.mk @@ -12,7 +12,8 @@ IPMIUTIL_LICENSE_FILES = COPYING IPMIUTIL_AUTORECONF = YES # tests against distro libcrypto so it might get a false positive when # the openssl version is old, so force it off -IPMIUTIL_CONF_OPTS = CPPFLAGS="$(TARGET_CPPFLAGS) -DSKIP_MD2" +# SKIP_MD2 can be used only if ALLOW_GNU is defined. +IPMIUTIL_CONF_OPTS = CPPFLAGS="$(TARGET_CPPFLAGS) -DALLOW_GNU -DSKIP_MD2" IPMIUTIL_DEPENDENCIES = openssl $(eval $(autotools-package)) |