diff options
author | Koen Kooi <koen@openembedded.org> | 2006-08-26 14:02:37 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-08-26 14:02:37 +0000 |
commit | f7f1ac27e90f042fa1c4322b193b5b6a27cd4c07 (patch) | |
tree | 3cc48b238512a67c93e734b2f2c3327b683916e8 | |
parent | 302b477c6e599fec386e4c66adcfbf38e427217e (diff) |
busybox 1.2.1: replace mv with a non-gnu-ish cp
-rw-r--r-- | packages/busybox/busybox_1.2.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/busybox/busybox_1.2.1.bb b/packages/busybox/busybox_1.2.1.bb index 8b399f1626..741df3f62d 100644 --- a/packages/busybox/busybox_1.2.1.bb +++ b/packages/busybox/busybox_1.2.1.bb @@ -74,7 +74,7 @@ do_install () { install -d ${D}/busybox ls ${D} -R - mv ${D}${base_bindir} ${D}${base_sbindir} ${D}${prefix} ${D}/busybox/ + cp -dPr ${D}${base_bindir} ${D}${base_sbindir} ${D}${prefix} ${D}/busybox/ # Move the busybox binary back to /bin install -d ${D}${base_bindir} mv ${D}/busybox${base_bindir}/busybox ${D}${base_bindir}/ |