[issue37653] make install fails

2019-07-29 Thread Ronald Oussoren
Ronald Oussoren added the comment: A trick w.r.t. comments in command-lines is to use the ":" command, that's a no-op shell command that ignores its arguments (although you do need to take care with shell special characters as it is just a command like any other). --

[issue37653] make install fails

2019-07-29 Thread STINNER Victor
STINNER Victor added the comment: Crap. That's why I didn't want to put the comment "inside" the code, but as separated commands. Well, I learnt something today: bash is the standard :-) -- ___ Python tracker

[issue37653] make install fails

2019-07-23 Thread Ned Deily
Ned Deily added the comment: Thanks for the PR! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue37653] make install fails

2019-07-23 Thread Ned Deily
Ned Deily added the comment: New changeset 387c3c5a04bc62cfa7c9dabe206ba2c582a71c05 by Ned Deily (Erlend Egeberg Aasland) in branch 'master': bpo-37653: Fix libinstall target in Makefile (GH-14911) https://github.com/python/cpython/commit/387c3c5a04bc62cfa7c9dabe206ba2c582a71c05 --

[issue37653] make install fails

2019-07-23 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- components: +macOS nosy: +ned.deily, ronaldoussoren ___ Python tracker ___ ___

[issue37653] make install fails

2019-07-22 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- pull_requests: +14686 pull_request: https://github.com/python/cpython/pull/14911 ___ Python tracker ___

[issue37653] make install fails

2019-07-22 Thread SilentGhost
Change by SilentGhost : -- keywords: -3.8regression versions: -Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue37653] make install fails

2019-07-22 Thread SilentGhost
Change by SilentGhost : -- keywords: +3.8regression nosy: +vstinner stage: -> patch review versions: +Python 3.8 ___ Python tracker ___

[issue37653] make install fails

2019-07-22 Thread Erlend Egeberg Aasland
New submission from Erlend Egeberg Aasland : Make install is broken in subtarget libinstall. This was introduced with commit e8692818afd731c1b7e925c626ac8200b1f1c31e. Fix in attached patch. -- components: Build files: fix.patch keywords: patch messages: 348300 nosy: Erlend Egeberg