summaryrefslogtreecommitdiff
path: root/dev-python/cx_Freeze/files/cx_Freeze-5.0.2-buildsystem.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
commit4f2d7949f03e1c198bc888f2d05f421d35c57e21 (patch)
treeba5f07bf3f9d22d82e54a462313f5d244036c768 /dev-python/cx_Freeze/files/cx_Freeze-5.0.2-buildsystem.patch
reinit the tree, so we can have metadata
Diffstat (limited to 'dev-python/cx_Freeze/files/cx_Freeze-5.0.2-buildsystem.patch')
-rw-r--r--dev-python/cx_Freeze/files/cx_Freeze-5.0.2-buildsystem.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-python/cx_Freeze/files/cx_Freeze-5.0.2-buildsystem.patch b/dev-python/cx_Freeze/files/cx_Freeze-5.0.2-buildsystem.patch
new file mode 100644
index 000000000000..6289bb2df2c2
--- /dev/null
+++ b/dev-python/cx_Freeze/files/cx_Freeze-5.0.2-buildsystem.patch
@@ -0,0 +1,16 @@
+From: Julian Ospald <hasufell@gentoo.org>
+Date: Tue Nov 19 11:20:21 UTC 2013
+
+Respect LDFLAGS, remove stripping.
+Fixes Gentoo bug #491602
+
+--- a/setup.py
++++ b/setup.py
+@@ -95,7 +95,6 @@
+ extraArgs.extend(vars["BASEMODLIBS"].split())
+ if vars["LOCALMODLIBS"]:
+ extraArgs.extend(vars["LOCALMODLIBS"].split())
+- extraArgs.append("-s")
+ self.compiler.link_executable(objects, fullName,
+ libraries = libraries,
+ library_dirs = libraryDirs,