Fixed find line for new stage1 /var/db/pkg.
authorChris Gianelloni <wolf31o2@gentoo.org>
Wed, 26 Jan 2005 15:34:28 +0000 (15:34 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Wed, 26 Jan 2005 15:34:28 +0000 (15:34 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@527 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
targets/stage1/stage1-preclean2-chroot.sh

index d9248ea4c5333973f414d948c9aa7fddd6ca58e5..7c9f6014358770973cfbd25057c5129e2322f642 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
 # ChangeLog for gentoo/src/catalyst 
 # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.153 2005/01/25 22:54:00 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.154 2005/01/26 15:34:28 wolf31o2 Exp $
+
+  26 Jan 2005; Chris Gianelloni <wolf31o2@gentoo.org>
+  targets/stage1/stage1-preclean2-chroot.sh:
+  Fixed find line for new stage1 /var/db/pkg.
 
   25 Jan 2005; Chris Gianelloni <wolf31o2@gentoo.org>
   targets/stage1/stage1-preclean2-chroot.sh:
index 469b642ad12482d406d46a525e37735e1b92b0b1..fd6cad355126f8b5f957c635e1e14a9da5bf56b4 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/bash
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/targets/stage1/Attic/stage1-preclean2-chroot.sh,v 1.6 2005/01/25 22:54:00 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/stage1/Attic/stage1-preclean2-chroot.sh,v 1.7 2005/01/26 15:34:28 wolf31o2 Exp $
                
 # now, some finishing touches to initialize gcc-config....
 unset ROOT
@@ -21,4 +21,4 @@ else
 fi
 
 # this cleans out /var/db, but leaves behind files portage needs for removal
-find /var/db/pkg -type f | grep -v '\(COUNTER\|CONTENTS\|ebuild\)' -exec rm -f '{}' \;
+find /var/db/pkg -type f | grep -v '\(COUNTER\|CONTENTS\|ebuild\)' | xargs rm -f