Skip to content

Commit 829f7a2

Browse files
committed
fix
1 parent f726d17 commit 829f7a2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

python/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -506,8 +506,8 @@ if (PYARROW_BUILD_GANDIVA)
506506

507507
set(LINK_LIBS
508508
${LINK_LIBS}
509-
gandiva_shared)
510-
509+
${GANDIVA_SHARED_LIB})
510+
511511
set(CYTHON_EXTENSIONS ${CYTHON_EXTENSIONS} gandiva)
512512
endif()
513513

python/pyarrow/includes/libgandiva.pxd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
from pyarrow.includes.common cimport *
2121
from pyarrow.includes.libarrow cimport *
2222

23-
cdef extern from "gandiva/status.h" namespace "gandiva" nogil:
23+
cdef extern from "arrow/status.h" namespace "gandiva" nogil:
2424
# We can later add more of the common status factory methods as needed
2525
cdef GStatus GStatus_OK "Status::OK"()
2626
cdef GStatus GStatus_Invalid "Status::Invalid"()
2727

28-
cdef cppclass GStatus "gandiva::Status":
28+
cdef cppclass GStatus "arrow::Status":
2929
GStatus()
3030

3131
c_string ToString()

0 commit comments

Comments
 (0)