# HG changeset patch # User Christopher Rogers # Date 1285723147 0 # Node ID f738eac85dcf2eb5d68233bc6418cd71e41d20f2 # Parent a962b42c3ecaa8a3163b578b7dd5786c94807314 Fixed post_remove function to use busybox ln directly. Otherwise just using ln won't work since ln is part of package and already removed. diff -r a962b42c3eca -r f738eac85dcf coreutils-operations/receipt --- a/coreutils-operations/receipt Tue Sep 28 16:15:58 2010 +0000 +++ b/coreutils-operations/receipt Wed Sep 29 01:19:07 2010 +0000 @@ -49,11 +49,13 @@ post_remove() { - ln -s /bin/busybox /bin/cp - ln -s /bin/busybox /bin/dd - ln -s /bin/busybox /bin/mv - ln -s /bin/busybox /bin/ln - ln -s /bin/busybox /bin/rm - ln -s /bin/busybox /usr/bin/install - ln -s /bin/busybox /usr/bin/shred + # use busybox ln applet directly since /bin/ln + # in this package is remove already + /bin/busybox ln -s /bin/busybox /bin/cp + /bin/busybox ln -s /bin/busybox /bin/dd + /bin/busybox ln -s /bin/busybox /bin/mv + /bin/busybox ln -s /bin/busybox /bin/ln + /bin/busybox ln -s /bin/busybox /bin/rm + /bin/busybox ln -s /bin/busybox /usr/bin/install + /bin/busybox ln -s /bin/busybox /usr/bin/shred }