# HG changeset patch # User Christophe Lincoln # Date 1253559865 -7200 # Node ID 59b766d69633316bc1a1b70fe1d8e2a30c43d279 # Parent 6ef3727f527d032a1515dd96bece7bea625c3b8a Fix: coreutils-operations dont remove cp/rm in post_install, we need them to install diff -r 6ef3727f527d -r 59b766d69633 coreutils-operations/receipt --- a/coreutils-operations/receipt Mon Sep 21 13:37:43 2009 +0200 +++ b/coreutils-operations/receipt Mon Sep 21 21:04:25 2009 +0200 @@ -18,10 +18,10 @@ genpkg_rules() { mkdir -p $fs/bin - cp -a $_pkg/usr/bin/cp $fs/bin + #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/rm $fs/bin + #cp -a $_pkg/usr/bin/rm $fs/bin mkdir -p $fs/usr/bin cp -a $_pkg/usr/bin/install $fs/usr/bin @@ -37,8 +37,12 @@ root=$1 echo "Processing pre-install commands..." echo -n "Removing all Busybox replaced utils... " - rm -f $root/bin/cp $root/bin/dd $root/bin/mv $root/bin/rm + rm -f $root/bin/dd $root/bin/mv 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. + # + #rm -f $root/bin/cp $root/bin/rm status }