# HG changeset patch # User Christopher Rogers # Date 1297821146 0 # Node ID 11fbedb2ad3677df3939bf56369d995401a906c3 # Parent 909ce0b09c25a1754d2f3614c0b68bdc02978927 Fixed coreutils-file-output-full. This is to fix missing tac from disappearing if this package is installed. diff -r 909ce0b09c25 -r 11fbedb2ad36 coreutils-file-output-full/receipt --- a/coreutils-file-output-full/receipt Wed Feb 16 00:33:49 2011 +0000 +++ b/coreutils-file-output-full/receipt Wed Feb 16 01:52:26 2011 +0000 @@ -36,12 +36,13 @@ root=$1 echo "Processing pre-install commands..." echo -n "Removing all Busybox replaced utils... " - rm -f $root/bin/cat $root/usr/bin/od + rm -f $root/bin/cat $root/usr/bin/od $root/usr/bin/tac status } post_remove() { - ln -s /bin/busybox /bin/cat - ln -s /bin/busybox /usr/bin/od + ln -s /bin/busybox $1/bin/cat + ln -s /bin/busybox $1/usr/bin/od + ln -s /bin/busybox $1/usr/bin/tac }