mirror of
https://github.com/openwrt/packages.git
synced 2026-06-14 01:22:11 +08:00
68312f49c0
I admit this may be be a bit aggressive, but the lang folder is getting cluttered/filled up with Python, PHP, Perl, Ruby, etc. packages. Makes sense to try to group them into per-lang folders. I took the Pythons. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
15 lines
499 B
Diff
15 lines
499 B
Diff
diff --git a/setup.py b/setup.py
|
|
index 1d1ae72..511aed5 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -444,7 +444,8 @@ class PyBuildExt(build_ext):
|
|
add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
|
|
if cross_compiling:
|
|
self.add_gcc_paths()
|
|
- self.add_multiarch_paths()
|
|
+ else:
|
|
+ self.add_multiarch_paths()
|
|
|
|
# Add paths specified in the environment variables LDFLAGS and
|
|
# CPPFLAGS for header and library files.
|