mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-04 16:52:58 +00:00
0001-waf-add-support-of-cross_compile.patch Removed since this is included in 2.3.1. Refresh the following patch: avoid-attr-unless-wanted.patch options-2.2.0.patch Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
22 lines
974 B
Diff
22 lines
974 B
Diff
--- a/lib/replace/wscript
|
|
+++ b/lib/replace/wscript
|
|
@@ -947,8 +947,6 @@ def build(bld):
|
|
if not bld.CONFIG_SET('HAVE_INET_ATON'): REPLACE_SOURCE += ' inet_aton.c'
|
|
if not bld.CONFIG_SET('HAVE_INET_NTOP'): REPLACE_SOURCE += ' inet_ntop.c'
|
|
if not bld.CONFIG_SET('HAVE_INET_PTON'): REPLACE_SOURCE += ' inet_pton.c'
|
|
- if not bld.CONFIG_SET('HAVE_GETXATTR') or bld.CONFIG_SET('XATTR_ADDITIONAL_OPTIONS'):
|
|
- REPLACE_SOURCE += ' xattr.c'
|
|
|
|
if not bld.CONFIG_SET('HAVE_CLOSEFROM'):
|
|
REPLACE_SOURCE += ' closefrom.c'
|
|
@@ -962,7 +960,7 @@ def build(bld):
|
|
# at the moment:
|
|
# hide_symbols=bld.BUILTIN_LIBRARY('replace'),
|
|
private_library=True,
|
|
- deps='dl attr' + extra_libs)
|
|
+ deps='dl' + extra_libs)
|
|
|
|
replace_test_cflags = ''
|
|
if bld.CONFIG_SET('HAVE_WNO_FORMAT_TRUNCATION'):
|
|
|