diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-10-09 08:41:41 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-10-09 08:41:41 +0000 |
commit | 6e929f4f86dcfbf46b7cd87340a7740778e7469d (patch) | |
tree | 4d7c016a415cceb3a448f2778db11d59d8b21b02 /eclass/python.eclass | |
parent | unmasking wxGTK and wxPython 2.4.2 (diff) | |
download | historical-6e929f4f86dcfbf46b7cd87340a7740778e7469d.tar.gz historical-6e929f4f86dcfbf46b7cd87340a7740778e7469d.tar.bz2 historical-6e929f4f86dcfbf46b7cd87340a7740778e7469d.zip |
adding hook to disable runtime compiling of pyc
Diffstat (limited to 'eclass/python.eclass')
-rw-r--r-- | eclass/python.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass index c90ad2469aac..49ded9e41f97 100644 --- a/eclass/python.eclass +++ b/eclass/python.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.1 2003/10/08 14:07:38 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.2 2003/10/09 08:41:40 liquidx Exp $ # # Author: Alastair Tse <liquidx@gentoo.org> # @@ -22,6 +22,10 @@ inherit alternatives ECLASS="python" INHERITED="$INHERITED $ECLASS" +python_disable_pyc() { + PYTHON_DONTCOMPILE=1 +} + # # name: python_version # desc: run without arguments and it will export the version of python |