diff options
author | Dan McGregor <dan.mcgregor@usask.ca> | 2015-02-04 10:09:13 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-08 08:00:26 +0000 |
commit | b7d91d30a59d591b96de5fad4a8fbf1f8158c40b (patch) | |
tree | af5ec3300a99d8e732bbc2ed50bf5f00fecf283d /meta/recipes-connectivity | |
parent | 0de948f85e80e9b21b7fab4d262e58b55d8a5441 (diff) | |
download | poky-b7d91d30a59d591b96de5fad4a8fbf1f8158c40b.tar.gz |
openssh: Fix non-deterministic build behaviour
If maillock.h is found, a dependency on liblockfile will be created.
liblockfile is in meta-oe, so we don't want that in an oe-core recipe.
(From OE-Core rev: b2cee9b9f08dff41e46e227b1ffa5e46e98faa89)
Signed-off-by: Dan McGregor <dan.mcgregor@usask.ca>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/openssh/openssh_6.7p1.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssh/openssh_6.7p1.bb b/meta/recipes-connectivity/openssh/openssh_6.7p1.bb index dcbc181aa9..a2726291fe 100644 --- a/meta/recipes-connectivity/openssh/openssh_6.7p1.bb +++ b/meta/recipes-connectivity/openssh/openssh_6.7p1.bb | |||
@@ -62,6 +62,9 @@ CACHED_CONFIGUREVARS += "ac_cv_header_bsd_libutil_h=no ac_cv_header_libutil_h=no | |||
62 | # passwd path is hardcoded in sshd | 62 | # passwd path is hardcoded in sshd |
63 | CACHED_CONFIGUREVARS += "ac_cv_path_PATH_PASSWD_PROG=${bindir}/passwd" | 63 | CACHED_CONFIGUREVARS += "ac_cv_path_PATH_PASSWD_PROG=${bindir}/passwd" |
64 | 64 | ||
65 | # We don't want to depend on libblockfile | ||
66 | CACHED_CONFIGUREVARS += "ac_cv_header_maillock_h=no" | ||
67 | |||
65 | # This is a workaround for uclibc because including stdio.h | 68 | # This is a workaround for uclibc because including stdio.h |
66 | # pulls in pthreads.h and causes conflicts in function prototypes. | 69 | # pulls in pthreads.h and causes conflicts in function prototypes. |
67 | # This results in compilation failure, so unless this is fixed, | 70 | # This results in compilation failure, so unless this is fixed, |