summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
Commit message (Expand)AuthorAgeFilesLines
* Check in patch #102971: if library_dirs is a string, split it usingAndrew M. Kuchling2001-01-091-0/+2
* Add forgotten initialization. Fixes bug #120994, "Traceback withAndrew M. Kuchling2000-12-201-0/+1
* Untabified.Greg Ward2000-10-147-9/+9
* Bastian Kleineidam: make 'check_lib()' more like AC_CHECK_LIB by addingGreg Ward2000-10-141-3/+6
* Lyle Johnson: use 'normcase()' in addition to 'normpath()' when testing ifGreg Ward2000-10-141-2/+4
* Bastian Kleineidam: fix up any supplied command-line options.Greg Ward2000-10-141-1/+16
* Recreated after installer source code changes.Thomas Heller2000-10-121-246/+246
* Remove some debugging prints.Greg Ward2000-10-031-2/+0
* Fixed so --no-compile is a negative alias for --compile.Greg Ward2000-10-031-0/+1
* Typo fix.Greg Ward2000-10-021-1/+1
* Added the ability to do byte-compilation at build time, currently offGreg Ward2000-10-021-5/+51
* Added --compile, --optimize options so users have an easy way toGreg Ward2000-10-021-0/+12
* Finished the overhaul of byte-compilation options: there's now a 6-wayGreg Ward2000-10-021-15/+66
* From 'run()', only call 'bytecompile()' if we actually haveGreg Ward2000-10-011-1/+1
* Reduced the 'bytecompile()' method to a one-line wrapper aroundGreg Ward2000-09-301-15/+4
* Standardized whitespace around function calls.Greg Ward2000-09-3014-339/+338
* Fixed 'run()' so it doesn't call 'bytecompile()' if 'install()' returned None.Greg Ward2000-09-301-1/+2
* Expect a tuple (dest_name, copied) from 'copy_file()'.Greg Ward2000-09-302-3/+3
* Changed 'build_module()' so it returns the result of 'copy_file()'Greg Ward2000-09-301-1/+1
* Changed to use the 'sub-commands' machinery:Greg Ward2000-09-301-21/+29
* Moved some things around for better organization.Greg Ward2000-09-301-26/+36
* Removed the extra_dirs and path_file metadata options.Thomas Heller2000-09-291-270/+260
* Removed the implib_dir instance variable because it is unused.Thomas Heller2000-09-281-13/+9
* Added a bunch of missing "=" signs in the option table.Greg Ward2000-09-251-30/+14
* Renamed '--keep-tree' option to '--keep-temp', for consistencyGreg Ward2000-09-251-6/+6
* Added 'boolean_options' list to support config file parsing.Greg Ward2000-09-2515-0/+31
* Split 'run()' up into 'build()', 'install()', and 'bytecompile()' (forGreg Ward2000-09-231-8/+28
* Whitespace tweaks.Greg Ward2000-09-231-35/+32
* Tweak what happens when run on non-Windows platforms: set install prefixGreg Ward2000-09-221-10/+5
* Changed all paths in the INSTALL_SCHEMES dict to Unix syntax, and addedGreg Ward2000-09-221-43/+56
* Set the 'nt' installation scheme for the install command even if runThomas Heller2000-09-191-8/+25
* Catch up to recent changes in TextFile (spotted by Bastian Kleineidam).Greg Ward2000-09-181-1/+1
* Fixed to respect 'define_macros' and 'undef_macros' on Extension object.Greg Ward2000-09-171-1/+5
* Rene Liebscher: if we have to run the same sub-command multiple timesGreg Ward2000-09-161-5/+18
* Renamed --keep-tree to --keep-temp.Greg Ward2000-09-161-3/+3
* Renamed --clean to --no-keep-temp and --noclean to --keep-temp.Greg Ward2000-09-161-6/+6
* Renamed --keep-tree option to --keep-temp.Greg Ward2000-09-161-3/+3
* Ensure sub-commands of "install" are reinitialized too.Greg Ward2000-09-161-3/+2
* Factored the "sub-command" machinery out to Command. Mainly, thisGreg Ward2000-09-161-25/+10
* Tweaked the build temp dir names again.Greg Ward2000-09-161-8/+4
* Typo fix.Greg Ward2000-09-161-1/+1
* Include the Python version in the platform-specific build directories:Greg Ward2000-09-161-2/+4
* Document the directory separatory for include dir and library dir lists.Greg Ward2000-09-161-2/+3
* Added 'warn_dir' option so other code can sneak in and disableGreg Ward2000-09-151-3/+6
* Adjust to the new sysconfig regime: use 'get_config_vars()' insteadGreg Ward2000-09-151-3/+6
* Adjust to the new sysconfig regime: use 'get_config_var()' insteadGreg Ward2000-09-151-3/+4
* Added --force (-f) option to force installation (including bytecodeGreg Ward2000-09-135-4/+20
* Fix install directories on Mac OS: now everything goes toGreg Ward2000-09-131-2/+2
* Bastian Kleineidam: fix so it cleans up the temporary script-buildingGreg Ward2000-09-121-20/+13
* Delete some debugging prints.Greg Ward2000-09-111-2/+0