This is an automated email from the ASF dual-hosted git repository.

uwe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new a0ca9b4  ARROW-2346: [Python] Fix PYARROW_CXX_FLAGS with multiple 
options
a0ca9b4 is described below

commit a0ca9b452041e3917f69d1189747bb70cd1ef42e
Author: Antoine Pitrou <[email protected]>
AuthorDate: Fri Mar 23 14:20:27 2018 +0100

    ARROW-2346: [Python] Fix PYARROW_CXX_FLAGS with multiple options
    
    Quoting seems necessary only when going through the shell.
    
    Author: Antoine Pitrou <[email protected]>
    
    Closes #1783 from pitrou/ARROW-2346-multiple-pyarrow-cxxflags and squashes 
the following commits:
    
    6599ab0 <Antoine Pitrou> ARROW-2346:  Fix PYARROW_CXX_FLAGS with multiple 
options
---
 python/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/setup.py b/python/setup.py
index cf44b1e..4724690 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -190,7 +190,7 @@ class build_ext(_build_ext):
                 cmake_options.append('-DPYARROW_BUILD_ORC=on')
 
             if len(self.cmake_cxxflags) > 0:
-                cmake_options.append('-DPYARROW_CXXFLAGS="{0}"'
+                cmake_options.append('-DPYARROW_CXXFLAGS={0}'
                                      .format(self.cmake_cxxflags))
 
             if self.bundle_arrow_cpp:

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to