blob: 79ca8c8ca182f2161fa30b6b40726de56286982f (
plain)
1
2
3
4
5
6
|
do_stage() {
# Installing directly into staging creates some races between existing
# glibc-initial files and us. We could use a new DESTDIR but we may as
# well just copy the data installed by do_install
cp -pPR ${D}/* ${STAGING_DIR_HOST}/
}
|