mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
c29c7ed764
Remove the un-necessary check for sqrt and avoid a gcc 6 configure error. Upstream-Status: Submitted [Pull request: a39907dd19726b2df3bac29a4bdc59d1bd0922a1] Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
14 lines
593 B
Diff
14 lines
593 B
Diff
Index: git/wscript
|
|
===================================================================
|
|
--- git.orig/wscript 2016-07-29 13:15:44.954249796 -0500
|
|
+++ git/wscript 2016-07-29 15:52:06.196768865 -0500
|
|
@@ -90,7 +90,7 @@
|
|
ctx.check_cxx(lib = lib, uselib_store = uselib)
|
|
|
|
# Check required functions
|
|
- req_funcs = [('memset', 'string.h', []) ,('sqrt', 'math.h', ['m'])]
|
|
+ req_funcs = [('memset', 'string.h', [])]
|
|
for func, header, uselib in req_funcs:
|
|
ctx.check_cxx(function_name = func, header_name = header,
|
|
uselib = uselib, mandatory = True)
|