noddos: Noddos v0.5.0 with mDNS / DNS-SD support
[feed/packages.git] / lang / python / python / patches / 006-remove-multi-arch-and-local-paths.patch
1 diff --git a/setup.py b/setup.py
2 index 54054c2..d043761 100644
3 --- a/setup.py
4 +++ b/setup.py
5 @@ -454,13 +454,8 @@ class PyBuildExt(build_ext):
6 os.unlink(tmpfile)
7
8 def detect_modules(self):
9 - # Ensure that /usr/local is always used
10 - if not cross_compiling:
11 - add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
12 - add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
13 if cross_compiling:
14 self.add_gcc_paths()
15 - self.add_multiarch_paths()
16
17 # Add paths specified in the environment variables LDFLAGS and
18 # CPPFLAGS for header and library files.