Changeset 297
- Timestamp:
- Wed Dec 13 18:28:14 2006
- Files:
-
- trunk/source/linux/Make.py (modified) (diff)
- trunk/doc/CHANGES.txt (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
trunk/source/linux/Make.py
r275 r297 162 162 cflags.append('-DNONELF') 163 163 164 libs = [os.path.join(binlib, sysconfig.get_config_vars('INSTSONAME')[0])] 165 # libs = [os.path.join(sysconfig.get_config_vars('LIBDIR')[0], sysconfig.get_config_vars('INSTSONAME')[0])] 166 164 libs = [os.path.join(sysconfig.get_config_vars('LIBPL')[0], sysconfig.get_config_vars('LIBRARY')[0])] 165 if not os.path.isfile(libs[0]): 166 print "WARNING: could not find Python static library at:", libs[0] 167 167 168 168 somevars = {} -
trunk/doc/CHANGES.txt
r290 r297 18 18 * Bootstrap modules are now compressed in the executable (so that they 19 19 are not visible in plaintext by just looking at it with a hex editor). 20 * Fixed a regression introduced in 1.1: under Linux, the bootloader does 21 not depend on libpythonX.X.so anymore. 20 22 21 23
