This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add --skip-build option to bdist command
Type: Stage:
Components: Distutils Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: kern, loewis
Priority: normal Keywords: patch

Created on 2001-04-09 01:20 by kern, last changed 2022-04-10 16:03 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
bdist_skip.diff kern, 2001-04-09 01:20 --skip-build option for bdist commands
Messages (3)
msg36308 - (view) Author: Robert Kern (kern) Date: 2001-04-09 01:20
Whenever one uses a non-default compiler to build an
extension, the bdist command will try to rebuild the
package with the default compiler and fail. 

The install command has a --skip-build option to
manually skip the re-building part of the install. I
adapted that code to add a similar --skip-build option
to the bdist, bdist_dumb, and bdist_wininst commands.
I'm not familiar enough with the bdist_rpm command's
code to see where it would work in there.
msg36309 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2001-06-07 05:28
Logged In: YES 
user_id=21627

I recommend to approve this patch.
msg36310 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2002-01-12 11:28
Logged In: YES 
user_id=21627

Thanks for the patch. Committed as

bdist.py 1.22
bdist_dumb.py 1.17
bdist_wininst.py 1.28
ACKS 1.155
NEWS 1.351
History
Date User Action Args
2022-04-10 16:03:56adminsetgithub: 34298
2001-04-09 01:20:41kerncreate