[Python-checkins] python/dist/src/Lib/distutils/command
build_ext.py, 1.91, 1.92
tim_one at users.sourceforge.net
tim_one at users.sourceforge.net
Sun Jan 18 15:29:57 EST 2004
- Previous message: [Python-checkins] python/dist/src/Lib StringIO.py, 1.31,
1.32 _strptime.py, 1.29, 1.30 httplib.py, 1.82, 1.83 random.py,
1.58, 1.59 sre_parse.py, 1.58, 1.59 traceback.py, 1.29,
1.30 urllib2.py, 1.59, 1.60
- Next message: [Python-checkins] python/dist/src/Lib/test pystone.py, 1.8,
1.9 test_applesingle.py, 1.1, 1.2 test_codeccallbacks.py, 1.15,
1.16 test_codecencodings_cn.py, 1.1,
1.2 test_codecencodings_jp.py, 1.1,
1.2 test_codecencodings_kr.py, 1.1,
1.2 test_codecencodings_tw.py, 1.1, 1.2 test_codecmaps_cn.py,
1.1, 1.2 test_codecmaps_jp.py, 1.1, 1.2 test_codecmaps_kr.py,
1.1, 1.2 test_codecmaps_tw.py, 1.1, 1.2 test_curses.py, 1.6,
1.7 test_descr.py, 1.198, 1.199 test_difflib.py, 1.8,
1.9 test_marshal.py, 1.4, 1.5 test_md5.py, 1.5,
1.6 test_multibytecodec.py, 1.1,
1.2 test_multibytecodec_support.py, 1.1, 1.2 test_os.py, 1.20,
1.21 test_re.py, 1.46, 1.47 test_set.py, 1.9,
1.10 test_sort.py, 1.11, 1.12 test_support.py, 1.61,
1.62 test_unicode_file.py, 1.12, 1.13 test_urllib2.py, 1.10, 1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory sc8-pr-cvs1:/tmp/cvs-serv17688/Lib/distutils/command
Modified Files:
build_ext.py
Log Message:
Whitespace normalization.
Index: build_ext.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_ext.py,v
retrieving revision 1.91
retrieving revision 1.92
diff -C2 -d -r1.91 -r1.92
*** build_ext.py 19 Nov 2002 13:12:28 -0000 1.91
--- build_ext.py 18 Jan 2004 20:29:54 -0000 1.92
***************
*** 172,176 ****
# this allows distutils on windows to work in the source tree
self.include_dirs.append(os.path.join(sys.exec_prefix, 'PC'))
! self.library_dirs.append(os.path.join(sys.exec_prefix, 'PCBuild'))
# OS/2 (EMX) doesn't support Debug vs Release builds, but has the
--- 172,177 ----
# this allows distutils on windows to work in the source tree
self.include_dirs.append(os.path.join(sys.exec_prefix, 'PC'))
! self.library_dirs.append(os.path.join(sys.exec_prefix, 'PC', 'VC6'))
! #self.library_dirs.append(os.path.join(sys.exec_prefix, 'PCBuild'))
# OS/2 (EMX) doesn't support Debug vs Release builds, but has the
- Previous message: [Python-checkins] python/dist/src/Lib StringIO.py, 1.31,
1.32 _strptime.py, 1.29, 1.30 httplib.py, 1.82, 1.83 random.py,
1.58, 1.59 sre_parse.py, 1.58, 1.59 traceback.py, 1.29,
1.30 urllib2.py, 1.59, 1.60
- Next message: [Python-checkins] python/dist/src/Lib/test pystone.py, 1.8,
1.9 test_applesingle.py, 1.1, 1.2 test_codeccallbacks.py, 1.15,
1.16 test_codecencodings_cn.py, 1.1,
1.2 test_codecencodings_jp.py, 1.1,
1.2 test_codecencodings_kr.py, 1.1,
1.2 test_codecencodings_tw.py, 1.1, 1.2 test_codecmaps_cn.py,
1.1, 1.2 test_codecmaps_jp.py, 1.1, 1.2 test_codecmaps_kr.py,
1.1, 1.2 test_codecmaps_tw.py, 1.1, 1.2 test_curses.py, 1.6,
1.7 test_descr.py, 1.198, 1.199 test_difflib.py, 1.8,
1.9 test_marshal.py, 1.4, 1.5 test_md5.py, 1.5,
1.6 test_multibytecodec.py, 1.1,
1.2 test_multibytecodec_support.py, 1.1, 1.2 test_os.py, 1.20,
1.21 test_re.py, 1.46, 1.47 test_set.py, 1.9,
1.10 test_sort.py, 1.11, 1.12 test_support.py, 1.61,
1.62 test_unicode_file.py, 1.12, 1.13 test_urllib2.py, 1.10, 1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Python-checkins
mailing list