From d57772218e953cfedbd8536ffa9b24ccb5ab3b0d Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Fri, 16 Jun 2017 09:59:48 +0500 Subject: [PATCH] glibc-external: fix removal of oe_multilib_header Signed-off-by: Christopher Larson --- recipes-external/glibc/glibc-external.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-external/glibc/glibc-external.bb b/recipes-external/glibc/glibc-external.bb index 770f4bd..6d07744 100644 --- a/recipes-external/glibc/glibc-external.bb +++ b/recipes-external/glibc/glibc-external.bb @@ -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'