diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2016-04-25 09:25:33 +0200 |
---|---|---|
committer | Patrick Williams <patrick@stwcx.xyz> | 2016-06-29 12:35:28 -0500 |
commit | 85eebc3b96ed17046425d4da883d93dba616e778 (patch) | |
tree | 8060fee6c200ce022376e200e5a5b89d454de223 /yocto-poky/meta | |
parent | 856271db10ba2a1659ed5987953d2ab4b8d7c60d (diff) | |
download | talos-openbmc-85eebc3b96ed17046425d4da883d93dba616e778.tar.gz talos-openbmc-85eebc3b96ed17046425d4da883d93dba616e778.zip |
rpm: explicitly disable tomcrypt
Configure autodetects libtomcrypt, but then it adds libtommath to
$LIBS and fails to link subsequent tests if it's unavailable.
| checking for pcre.h... yes
| checking for pcre_compile in -lpcre... no
| checking whether to build with PCRE library... no
| ++ executing failure action
| configure: error: unable to find usable PCRE library
(From OE-Core rev: 54665fb9e27ba1b0e4eddaf170303d4f2db66fae)
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'yocto-poky/meta')
-rw-r--r-- | yocto-poky/meta/recipes-devtools/rpm/rpm_5.4.16.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yocto-poky/meta/recipes-devtools/rpm/rpm_5.4.16.bb b/yocto-poky/meta/recipes-devtools/rpm/rpm_5.4.16.bb index cbdca88ea..f2c12d2de 100644 --- a/yocto-poky/meta/recipes-devtools/rpm/rpm_5.4.16.bb +++ b/yocto-poky/meta/recipes-devtools/rpm/rpm_5.4.16.bb @@ -328,6 +328,7 @@ EXTRA_OECONF += "--verbose \ --without-ruby \ --without-squirrel \ --without-sasl2 \ + --without-tomcrypt \ --with-build-extlibdep \ --with-build-maxextlibdep \ --without-valgrind \ |