git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1250
d1e1f19c-881f-0410-ab34-
b69fee027534
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Id: $
+ 12 Oct 2007; Andrew Gaffney <agaffney@gentoo.org>
+ modules/generic_stage_target.py:
+ make error message more specific when removing immutable flag
+
11 Oct 2007; Chris Gianelloni <wolf31o2@gentoo.org> catalyst,
examples/livecd-stage2_template.spec, modules/generic_stage_target.py:
Added Andrew Gaffney to maintainer list, fixed a typo, updated copyright
# the proper perms and ownership
mystat=os.stat(myemp)
if os.uname()[0] == "FreeBSD":
- cmd("chflags -R noschg "+myemp, "Could not remove immutable flag")
+ cmd("chflags -R noschg "+myemp, "Could not remove immutable flag for file " + myemp)
#cmd("rm -rf "+myemp, "Could not remove existing file: "+myemp,env-self.env)
shutil.rmtree(myemp)
os.makedirs(myemp,0755)