diff options
author | Holger Freyther <zecke@selfish.org> | 2007-12-23 00:23:57 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2007-12-23 00:23:57 +0000 |
commit | 6e715d8f2561a8fac492cc10528102608c64eb74 (patch) | |
tree | e862647ff900034f08bfc6d1f7920d858bc63451 /packages/busybox | |
parent | a31bd35ef6affae2aa03832b261a19803ff4ed77 (diff) |
Remove some GNUism and replace cp -a with cp -pPR (once again)
I didn't touch the to be installed files, as we have GNU coreutils or
at least a compatible busybox version on our targets so far.
Diffstat (limited to 'packages/busybox')
-rw-r--r-- | packages/busybox/busybox_1.00.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/busybox/busybox_1.00.bb b/packages/busybox/busybox_1.00.bb index ca2db7e760..262d6afff1 100644 --- a/packages/busybox/busybox_1.00.bb +++ b/packages/busybox/busybox_1.00.bb @@ -94,7 +94,7 @@ pkg_prerm_${PN} () { # providing its files, this will make update-alternatives work, but the update-rc.d part # for syslog, httpd and/or udhcpd will fail if there is no other package providing sh tmpdir=`mktemp -d /tmp/busyboxrm-XXXXXX` - cp -a /bin/busybox $tmpdir/ + cp -pPR /bin/busybox $tmpdir/ ln -s /bin/busybox $tmpdir/[ ln -s /bin/busybox $tmpdir/test ln -s /bin/busybox $tmpdir/head |