wok rev 8664

Fixed coreutils-file-output-full. This is to fix missing tac from disappearing if this package is installed.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Feb 16 01:52:26 2011 +0000 (2011-02-16)
parents 909ce0b09c25
children 3ea9f2d8e3a1
files coreutils-file-output-full/receipt
line diff
     1.1 --- a/coreutils-file-output-full/receipt	Wed Feb 16 00:33:49 2011 +0000
     1.2 +++ b/coreutils-file-output-full/receipt	Wed Feb 16 01:52:26 2011 +0000
     1.3 @@ -36,12 +36,13 @@
     1.4  	root=$1
     1.5  	echo "Processing pre-install commands..."
     1.6  	echo -n "Removing all Busybox replaced utils... "
     1.7 -	rm -f $root/bin/cat $root/usr/bin/od
     1.8 +	rm -f $root/bin/cat $root/usr/bin/od $root/usr/bin/tac
     1.9  	status
    1.10  }
    1.11  
    1.12  post_remove()
    1.13  {
    1.14 -	ln -s /bin/busybox /bin/cat
    1.15 -	ln -s /bin/busybox /usr/bin/od
    1.16 +	ln -s /bin/busybox $1/bin/cat
    1.17 +	ln -s /bin/busybox $1/usr/bin/od
    1.18 +	ln -s /bin/busybox $1/usr/bin/tac
    1.19  }