[issue10765] Build regression from automation changes on windows

2016-09-15 Thread Zachary Ware

Zachary Ware added the comment:

The build system has been completely rewritten at least once since this was 
opened; this should no longer be a problem.

--
resolution:  -> out of date
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10765] Build regression from automation changes on windows

2014-06-29 Thread Ezio Melotti

Changes by Ezio Melotti ezio.melo...@gmail.com:


--
nosy: +haypo, steve.dower, zach.ware

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10765
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10765] Build regression from automation changes on windows

2014-06-07 Thread Mark Lawrence

Mark Lawrence added the comment:

I agree with the sentiment expressed in msg160237.  Having said that I believe 
that a lot of work has been put into the build system recently that might have 
covered this.

--
nosy: +BreamoreBoy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10765
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10765] Build regression from automation changes on windows

2014-06-07 Thread Brian Curtin

Changes by Brian Curtin br...@python.org:


--
nosy:  -brian.curtin

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10765
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10765] Build regression from automation changes on windows

2012-05-10 Thread Ezio Melotti

Ezio Melotti ezio.melo...@gmail.com added the comment:

Avoiding spaces in the dir names might not be so easy, if e.g. you are trying 
to install it in Program Files, Users/Name Surname, or some other system 
directory that has spaces in there (sure, you could install it elsewhere, but 
in 2012 this shouldn't be an issue anymore).

--
stage:  - patch review

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10765
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10765] Build regression from automation changes on windows

2012-05-08 Thread Martin

Martin gzl...@googlemail.com added the comment:

Yes, this is still reproducible. For instance, by:

 hg clone -b default 3.3 feature branch
 cd feature branch/PCbuild
 call build_env.bat
 call build.bat

It seems python33.dll now does get created so it's less severe, but the 
python3dll still fails due to the makefile OutDir not being quoted:

NMAKE : fatal error U1073: don't know how to make 'branch\PCbuild\'

--
versions: +Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10765
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10765] Build regression from automation changes on windows

2012-05-08 Thread Martin v . Löwis

Martin v. Löwis mar...@v.loewis.de added the comment:

As there is an easy work-around (just don't use spaces in directory names), I 
still consider this issue as irrelevant as two years ago.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10765
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10765] Build regression from automation changes on windows

2012-05-07 Thread Ezio Melotti

Ezio Melotti ezio.melo...@gmail.com added the comment:

Can you still reproduce this?

--
nosy: +ezio.melotti

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10765
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10765] Build regression from automation changes on windows

2012-05-07 Thread Antoine Pitrou

Changes by Antoine Pitrou pit...@free.fr:


--
nosy: +brian.curtin

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10765
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10765] Build regression from automation changes on windows

2011-01-28 Thread Martin

Martin gzl...@googlemail.com added the comment:

My build is still affected by this, can you find some time to look at the 
attached patch please?

Relevant bit of log is:

Performing Makefile project actions
Microsoft (R) Program Maintenance Utility Version 9.00.21022.08
Copyright (C) Microsoft Corporation.  All rights reserved.
NMAKE : fatal error U1073: don't know how to make 'User\py3k\PCbuild\'
Stop.
Project : error PRJ0019: A tool returned an error code from Performing 
Makefile project actions

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10765
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10765] Build regression from automation changes on windows

2010-12-23 Thread Martin

New submission from Martin gzl...@googlemail.com:

The build changes in r87093 broke me, as my py3k branch is under a dir with a 
space in the name, and the OutDir path needs escaping in the makefiles. Various 
extra quoting seems to be sufficient, though inelegant.

--
components: Build, Windows
files: py3k_build.patch
keywords: patch
messages: 124575
nosy: gz, loewis
priority: normal
severity: normal
status: open
title: Build regression from automation changes on windows
type: behavior
versions: Python 3.2
Added file: http://bugs.python.org/file20151/py3k_build.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10765
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10765] Build regression from automation changes on windows

2010-12-23 Thread Martin

Martin gzl...@googlemail.com added the comment:

Oh, and after building with this, I get:

$ svn st
?   PC/python3dll.obj

So either that wants moving or svn:ignore needs updating.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10765
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com