glibc-external: fix removal of oe_multilib_header

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
This commit is contained in:
Christopher Larson
2017-06-16 09:59:48 +05:00
parent 095582c295
commit d57772218e

View File

@@ -144,7 +144,7 @@ python () {
install = d.getVar('do_install', False)
python, shell = install.split('rm -f ', 1)
# bits/syscall.h is in linux-libc-headers-external
shell = shell.replace('oe_multilib_header bits/syscall.h\n', '')
shell = shell.replace('oe_multilib_header bits/syscall.h bits/long-double.h\n', '')
d.setVar('do_install_glibc', 'rm -f ' + shell)
d.setVarFlag('do_install_glibc', 'func', '1')
new_install = python + '\n bb.build.exec_func("do_install_glibc", d)\n'