[KoCo-CVS] [Commit] KoreanCodecs setup.py
Brought to you by:
perky
From: Chang <pe...@us...> - 2002-04-26 10:33:20
|
perky 02/04/26 03:33:18 Modified: . setup.py Log: - Avoid strange phenomenon around installing *.pth into PLATLIB on win32 (why?) - take away aliases with '-' (it's working now!) Revision Changes Path 1.15 +2 -2 KoreanCodecs/setup.py Index: setup.py =================================================================== RCS file: /cvsroot/koco/KoreanCodecs/setup.py,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- setup.py 26 Apr 2002 10:18:31 -0000 1.14 +++ setup.py 26 Apr 2002 10:33:18 -0000 1.15 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# $Id: setup.py,v 1.14 2002/04/26 10:18:31 perky Exp $ +# $Id: setup.py,v 1.15 2002/04/26 10:33:18 perky Exp $ import sys from distutils.core import setup, Extension @@ -18,7 +18,7 @@ def finalize_options (self): org_install_lib = self.install_lib install.finalize_options(self) - self.install_lib = org_install_lib or self.install_purelib + self.install_libbase = self.install_lib = org_install_lib or self.install_purelib setup (name = "KoreanCodecs", version = "2.0.3a2", |