wok-6.x 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 | a962b42c3eca |
children | 00749eb77c16 |
files | coreutils-operations/receipt |
line diff
1.1 --- a/coreutils-operations/receipt Tue Sep 28 16:15:58 2010 +0000 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 }