Author: arigo <[email protected]>
Branch: 
Changeset: r64715:a4a78a85ceaf
Date: 2013-06-02 21:21 +0200
http://bitbucket.org/pypy/pypy/changeset/a4a78a85ceaf/

Log:    Merged in juanfra684/pypy (pull request #154)

        Reverts the last change to CC in openbsd.py. PyPy reads correctly
        $CC.

diff --git a/rpython/translator/platform/openbsd.py 
b/rpython/translator/platform/openbsd.py
--- a/rpython/translator/platform/openbsd.py
+++ b/rpython/translator/platform/openbsd.py
@@ -5,11 +5,7 @@
 from rpython.translator.platform.bsd import BSD
 
 class OpenBSD(BSD):
-    if os.environ.get("CC") is None:
-        DEFAULT_CC = "cc"
-    else:
-        DEFAULT_CC = os.environ.get("CC")
-
+    DEFAULT_CC = "cc"
     name = "openbsd"
 
     link_flags = os.environ.get("LDFLAGS", "").split() + ['-pthread']
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to