[issue818201] distutils: clean does not use build_base option from build

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If y

[issue818201] distutils: clean does not use build_base option from build

2014-07-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- components: -Distutils2 nosy: +dstufft versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker ___ __

[issue818201] distutils: clean does not use build_base option from build

2012-01-03 Thread Éric Araujo
Éric Araujo added the comment: > Where was this fixed? It is still a problem in Python 2.6.6. I assumed it was fixed after looking at the code: clean does take build-* options from the build command. > For example, if I do: > python setup.py build_ext --compiler=mingw32 build > --build-pl

[issue818201] distutils: clean does not use build_base option from build

2011-12-16 Thread Josh
Josh added the comment: Where was this fixed? It is still a problem in Python 2.6.6. For example, if I do: python setup.py build_ext --compiler=mingw32 build --build-platlib=build\win64 Then follow it up with: python setup.py clean --build-base=build\win64 -a This is what it does: running

[issue818201] distutils: clean does not use build_base option from build

2010-08-04 Thread Nicholas Riley
Nicholas Riley added the comment: Good to know - thanks! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue818201] distutils: clean does not use build_base option from build

2010-08-04 Thread Éric Araujo
Éric Araujo added the comment: This is actually already fixed. Thanks for the report nonetheless! -- components: +Distutils resolution: accepted -> fixed stage: unit test needed -> committed/rejected status: open -> closed ___ Python tracker

[issue818201] distutils: clean does not use build_base option from build

2010-08-02 Thread Éric Araujo
Éric Araujo added the comment: Sorry for the long delay without reply. Thank you for the report, I’ll look into it in the following weeks. In distutils2, I think clean could use the configure command (#8254) or maybe it’ll be simpler to just set_undefined_options from build. I’ll ask Tarek wh

[issue818201] distutils: clean does not use build_base option from build

2010-07-28 Thread Éric Araujo
Changes by Éric Araujo : -- assignee: -> tarek nosy: +merwok stage: -> unit test needed title: distutils: clean -b ignored; set_undefined_options doesn't -> distutils: clean does not use build_base option from build type: -> behavior versions: -Python 2.3 __