1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From 872c14860860c408a465d9015fc36a11743e99a8 Mon Sep 17 00:00:00 2001
From: SVN-Git Migration <python-modules-team@lists.alioth.debian.org>
Date: Thu, 8 Oct 2015 13:27:33 -0700
Subject: 01_use_debian_compiler_flags.diff
Patch-Name: 01_use_debian_compiler_flags.diff
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index fee53ff..2e73dcb 100644
--- a/setup.py
+++ b/setup.py
@@ -33,7 +33,7 @@ setup(
platforms = ["Unix"],
package_dir = { '': 'lib' },
py_modules = ["yenc"],
- ext_modules = [Extension("_yenc",["src/_yenc.c"],extra_compile_args=["-O2","-g"])],
+ ext_modules = [Extension("_yenc",["src/_yenc.c"],extra_compile_args=[])],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.5",
|