diff options
author | Jim Ramsay <lack@gentoo.org> | 2008-06-04 13:12:23 +0000 |
---|---|---|
committer | Jim Ramsay <lack@gentoo.org> | 2008-06-04 13:12:23 +0000 |
commit | 21996fd7f732ddfa9e5b905ee46ca7881bfa9609 (patch) | |
tree | 7cab767f5313fa0f58e21be7afb00228710a6319 /eclass | |
parent | Added single quotes around the default FFLAGS since some machines seem to cho... (diff) | |
download | gentoo-2-21996fd7f732ddfa9e5b905ee46ca7881bfa9609.tar.gz gentoo-2-21996fd7f732ddfa9e5b905ee46ca7881bfa9609.tar.bz2 gentoo-2-21996fd7f732ddfa9e5b905ee46ca7881bfa9609.zip |
Fixed python_mod_cleanup to clean up in the right place
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/rox.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/rox.eclass b/eclass/rox.eclass index b6124495d989..a8b8fc2f709d 100644 --- a/eclass/rox.eclass +++ b/eclass/rox.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/rox.eclass,v 1.28 2008/06/04 12:37:33 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/rox.eclass,v 1.29 2008/06/04 13:12:23 lack Exp $ # ROX eclass Version 3 @@ -309,7 +309,7 @@ rox_pkg_postinst() { } rox_pkg_postrm() { - python_mod_cleanup + python_mod_cleanup "${APPDIR}" } |