Changeset 205

Show
Ignore:
Timestamp:
Mon Dec 26 18:48:04 2005
Author:
giovannibajo
Message:

Fix lib path under Linux

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/hooks/hook-encodings.py

    r105 r205  
    20 20  
    21 21 import os, sys, glob  
      22 from distutils import sysconfig  
    22 23 hiddenimports = []  
    23   for f in glob.glob(os.path.join(sys.prefix, "Lib", "encodings", "*.py")):  
      24 libpath = sysconfig.get_python_lib(plat_specific=0, standard_lib=1)  
      25 for f in glob.glob(os.path.join(libpath, "encodings", "*.py")):  
    24 26     f = os.path.basename(f)  
    25 27     f = os.path.splitext(f)[0]  
  • trunk/doc/CHANGES.txt

    r202 r205  
    14 14    even under Python 2.4. You can eventually ship your programs really as  
    15 15    single-file executables, even when using the newest Python version!  
      16  * (Linux) Fix problem with finding the encodings modules.  
    16 17  
    17 18