diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-07 18:27:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-14 22:30:56 +0000 |
commit | f5e681d8677d7dd528cc316e937ff186ede8ca9a (patch) | |
tree | c015f560d1b7aec5f3e016b2319a8d7121b52d70 | |
parent | 93adf465988210f31a46f53e4bb28e63f3147077 (diff) | |
download | poky-f5e681d8677d7dd528cc316e937ff186ede8ca9a.tar.gz |
site/common-linux: Add some macros to avoid sleeps during configure
If you profile gettext do_configure you notice it has some "sleep 1"
type events occurring. This patch ensures we cache the right values to
avoid those pointless delays there and in any other configure scripts
using the same macros.
(From OE-Core rev: ae49c16816e23fcfdcfb88d2d763e91be78f9dc0)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/site/common-linux | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/site/common-linux b/meta/site/common-linux index 8b5be68be9..448758b5f1 100644 --- a/meta/site/common-linux +++ b/meta/site/common-linux | |||
@@ -1,3 +1,7 @@ | |||
1 | # gettext - these add sleep delays otherwise | ||
2 | gl_cv_func_sleep_works=${gl_cv_func_sleep_works=yes} | ||
3 | gl_cv_header_working_fcntl_h=${gl_cv_header_working_fcntl_h=yes} | ||
4 | |||
1 | # apr | 5 | # apr |
2 | ac_cv_file__dev_zero=${ac_cv_file__dev_zero=yes} | 6 | ac_cv_file__dev_zero=${ac_cv_file__dev_zero=yes} |
3 | ac_cv_sizeof_pid_t=${ac_cv_sizeof_pid_t=4} | 7 | ac_cv_sizeof_pid_t=${ac_cv_sizeof_pid_t=4} |