wok diff coreutils-operations/receipt @ rev 6458

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.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Sep 29 01:19:07 2010 +0000 (2010-09-29)
parents 5924ec6bb02f
children 250ea75bef27
line diff
     1.1 --- a/coreutils-operations/receipt	Mon Apr 12 22:30:38 2010 +0200
     1.2 +++ b/coreutils-operations/receipt	Wed Sep 29 01:19:07 2010 +0000
     1.3 @@ -49,11 +49,13 @@
     1.4  
     1.5  post_remove()
     1.6  {
     1.7 -	ln -s /bin/busybox /bin/cp
     1.8 -	ln -s /bin/busybox /bin/dd
     1.9 -	ln -s /bin/busybox /bin/mv
    1.10 -	ln -s /bin/busybox /bin/ln
    1.11 -	ln -s /bin/busybox /bin/rm
    1.12 -	ln -s /bin/busybox /usr/bin/install
    1.13 -	ln -s /bin/busybox /usr/bin/shred
    1.14 +	# use busybox ln applet directly since /bin/ln
    1.15 +        # in this package is remove already
    1.16 +	/bin/busybox ln -s /bin/busybox /bin/cp
    1.17 +	/bin/busybox ln -s /bin/busybox /bin/dd
    1.18 +	/bin/busybox ln -s /bin/busybox /bin/mv
    1.19 +	/bin/busybox ln -s /bin/busybox /bin/ln
    1.20 +	/bin/busybox ln -s /bin/busybox /bin/rm
    1.21 +	/bin/busybox ln -s /bin/busybox /usr/bin/install
    1.22 +	/bin/busybox ln -s /bin/busybox /usr/bin/shred
    1.23  }