diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2017-01-31 10:05:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 15:34:52 +0000 |
commit | 1135024502bb120c331e065f4c441d6a3efb6d4f (patch) | |
tree | 6bac9d792778434d48f39b0ba16e6939cd04c259 /meta/recipes-support | |
parent | e2dd3621c45e854b4eb054b4d4537487462cdd39 (diff) | |
download | openembedded-core-1135024502bb120c331e065f4c441d6a3efb6d4f.tar.gz openembedded-core-1135024502bb120c331e065f4c441d6a3efb6d4f.tar.bz2 openembedded-core-1135024502bb120c331e065f4c441d6a3efb6d4f.zip |
libtasn1: depends on yacc
This fixes a potential pollution by the build host and build error
when yacc isn't installed on the build host:
| ../../libtasn1-4.9/build-aux/ylwrap: line 175: yacc: command not found
| Makefile:1116: recipe for target 'ASN1.c' failed
| make[3]: *** [ASN1.c] Error 127
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/gnutls/libtasn1_4.9.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-support/gnutls/libtasn1_4.9.bb b/meta/recipes-support/gnutls/libtasn1_4.9.bb index b8ff9eaf7a..3da5d4bcc5 100644 --- a/meta/recipes-support/gnutls/libtasn1_4.9.bb +++ b/meta/recipes-support/gnutls/libtasn1_4.9.bb @@ -16,6 +16,8 @@ SRC_URI = "${GNU_MIRROR}/libtasn1/libtasn1-${PV}.tar.gz \ file://0004-tools-eliminated-compiler-warnings.patch \ " +DEPENDS = "bison-native" + SRC_URI[md5sum] = "3018d0f466a32b66dde41bb122e6cab6" SRC_URI[sha256sum] = "4f6f7a8fd691ac2b8307c8ca365bad711db607d4ad5966f6938a9d2ecd65c920" |