summaryrefslogtreecommitdiffstats
path: root/meta/classes/libc-package.bbclass
diff options
context:
space:
mode:
authorDexuan Cui <dexuan.cui@intel.com>2011-01-15 18:50:14 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-17 22:05:10 +0000
commitdca67e0bc61e7bc40c628fb1f1a41f7f756bb0bc (patch)
tree660404062cca6771cf46783dee7ea4556cdd88da /meta/classes/libc-package.bbclass
parent0df3c481309e89b93e8a57773eb9c470b4dd13a7 (diff)
downloadpoky-dca67e0bc61e7bc40c628fb1f1a41f7f756bb0bc.tar.gz
libc-package.bbclass: should not rm scsi/*.h
{e}glibc should install the scsi/*.h files, which are needed by hal. Currently hal can build because eglibc-initial (which has its own do_install) installs the files. In future eglibc will have its own sysroot, so hal won't build. BTW: in OE side, eglibc's do_install also doesn't remove the files. Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Diffstat (limited to 'meta/classes/libc-package.bbclass')
-rw-r--r--meta/classes/libc-package.bbclass3
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/classes/libc-package.bbclass b/meta/classes/libc-package.bbclass
index 4709b33c0e..733f26b85e 100644
--- a/meta/classes/libc-package.bbclass
+++ b/meta/classes/libc-package.bbclass
@@ -95,9 +95,6 @@ do_install() {
95 mv ${WORKDIR}/SUPPORTED.tmp ${WORKDIR}/SUPPORTED 95 mv ${WORKDIR}/SUPPORTED.tmp ${WORKDIR}/SUPPORTED
96 done 96 done
97 rm -f ${D}{sysconfdir}/rpc 97 rm -f ${D}{sysconfdir}/rpc
98 rm -f ${D}${includedir}/scsi/sg.h
99 rm -f ${D}${includedir}/scsi/scsi_ioctl.h
100 rm -f ${D}${includedir}/scsi/scsi.h
101 rm -rf ${D}${datadir}/zoneinfo 98 rm -rf ${D}${datadir}/zoneinfo
102 rm -rf ${D}${libexecdir}/getconf 99 rm -rf ${D}${libexecdir}/getconf
103} 100}