Author: Ronny Pfannschmidt <[email protected]>
Branch: link-old-glibc-abi
Changeset: r59960:7afca3399960
Date: 2013-01-11 14:33 +0100
http://bitbucket.org/pypy/pypy/changeset/7afca3399960/
Log: cflags is a tuple
diff --git a/pypy/translator/platform/posix.py
b/pypy/translator/platform/posix.py
--- a/pypy/translator/platform/posix.py
+++ b/pypy/translator/platform/posix.py
@@ -114,7 +114,7 @@
# disables glibc source fortify because
# it requires glibc 2.15 for the __fdel_chk symbol
- cflags.append('-D_FORTIFY_SOURCE=0')
+ cflags += '-D_FORTIFY_SOURCE=0',
m = GnuMakefile(path)
m.exe_name = exe_name
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit