Changeset 407
- Timestamp:
- Thu Jan 17 13:05:52 2008
- Files:
-
- branches/dl/source/linux/Make.py (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
branches/dl/source/linux/Make.py
r307 r407 165 165 cflags.append('-DNONELF') 166 166 167 libs = [os.path.join(sysconfig.get_config_vars('LIBPL')[0], sysconfig.get_config_vars('LIBRARY')[0])]168 if not os.path.isfile(libs[0]):169 print "WARNING: could not find Python static library at:", libs[0]170 171 167 somevars = {} 172 168 if os.path.exists(makefile_in): … … 179 175 somevars['CFLAGS'] = string.join(cflags) # override 180 176 files = ['$(OPT)', '$(LDFLAGS)', '$(LINKFORSHARED)', 'getpath.c'] + \ 181 files + libs +\177 files + \ 181 177 ['$(MODLIBS)', '$(LIBS)', '$(SYSLIBS)', '-lz'] # XXX zlib not always -lz 182 178
