# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
# $Id: $
+ 13 Mar 2008; Chris Gianelloni <wolf31o2@gentoo.org> catalyst,
+ targets/livecd-stage2/livecd-stage2-controller.sh:
+ OK, we run our find outside the chroot, so we don't want to use absolute
+ paths unless we want to wipe out *.a *.la *.pyc and *.pyo from our host
+ system. Oops. Due to this bug, I'm making this 2.0.6_pre15 for testing
+ immediately.
+
13 Mar 2008; Chris Gianelloni <wolf31o2@gentoo.org> catalyst,
targets/livecd-stage2/livecd-stage2-controller.sh,
targets/stage1/stage1-controller.sh:
import pdb
__maintainer__="Chris Gianelloni <wolf31o2@gentoo.org>"
-__version__="2.0.6_pre14"
+__version__="2.0.6_pre15"
conf_values={}
# Clean out man, info and doc files
rm -rf usr/share/{man,doc,info}/*
# Zap all .pyc and .pyo files
- find / -iname "*.py[co]" -exec rm -f {} \;
+ find usr/lib -iname "*.py[co]" -exec rm -f {} \;
fi
# Cleanup all .a files except libgcc.a, *_nonshared.a and
# /usr/lib/portage/bin/*.a
- find / -type f -iname "*.a" | grep -v 'libgcc.a' | \
+ find usr/lib -type f -iname "*.a" | grep -v 'libgcc.a' | \
grep -v 'nonshared.a' | grep -v '/usr/lib/portage/bin/' | \
grep -v 'libgcc_eh.a' | xargs rm -f
;;