cpython: 5966c206654b (original) (raw)

Mercurial > cpython

changeset 78462:5966c206654b

- Issue #11715: Fix multiarch detection without having Debian development tools (dpkg-dev) installed. [#11715]

doko@ubuntu.com
date Wed, 08 Aug 2012 12:15:55 +0200
parents 59223da36dec
children e0f3406c43e4
files Misc/NEWS setup.py
diffstat 2 files changed, 24 insertions(+), 0 deletions(-)[+] [-] Misc/NEWS 3 setup.py 21

line wrap: on

line diff

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -312,6 +312,9 @@ Tests Build ----- +- Issue #11715: Fix multiarch detection without having Debian development

--- a/setup.py +++ b/setup.py @@ -379,6 +379,27 @@ class PyBuildExt(build_ext): def add_multiarch_paths(self): # Debian/Ubuntu multiarch support. # https://wiki.ubuntu.com/MultiarchSpec[](#l2.6)

+

+ if not find_executable('dpkg-architecture'): return opt = ''