# HG changeset patch # User Rohit Joshi # Date 1260991537 0 # Node ID 614e0edaed0260261b113db248cfda831e950451 # Parent 2da8547f534b23d3b53f7aca614ae17b6cbf50da add ln to coreutils-operations diff -r 2da8547f534b -r 614e0edaed02 coreutils-operations/receipt --- a/coreutils-operations/receipt Tue Dec 15 16:48:44 2009 +0000 +++ b/coreutils-operations/receipt Wed Dec 16 19:25:37 2009 +0000 @@ -21,6 +21,7 @@ #cp -a $_pkg/usr/bin/cp $fs/bin cp -a $_pkg/usr/bin/dd $fs/bin cp -a $_pkg/usr/bin/mv $fs/bin + cp -a $_pkg/usr/bin/ln $fs/bin #cp -a $_pkg/usr/bin/rm $fs/bin mkdir -p $fs/usr/bin @@ -37,7 +38,7 @@ root=$1 echo "Processing pre-install commands..." echo -n "Removing all Busybox replaced utils... " - rm -f $root/bin/dd $root/bin/mv + rm -f $root/bin/dd $root/bin/mv $root/bin/ln rm -f $root/usr/bin/install $root/usr/bin/shred # Dont remove cp/rm or the installation will fail because tazpkg use # cp and rm during the process. @@ -51,6 +52,7 @@ 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