You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by uw...@apache.org on 2018/07/23 06:21:27 UTC

[arrow] branch master updated: ARROW-2896: [GLib] Add missing exports

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 26cf346  ARROW-2896: [GLib] Add missing exports
26cf346 is described below

commit 26cf34621b64faf0bd8802d842e3fe04215afefb
Author: Kouhei Sutou <ko...@clear-code.com>
AuthorDate: Mon Jul 23 08:21:19 2018 +0200

    ARROW-2896: [GLib] Add missing exports
    
    If we don't call export, c_glib/test/run-test.rb can't use
    LD_LIBRARY_PATH and GI_TYPELIB_PATH variables.
    
    See also https://github.com/apache/arrow/pull/2303#issuecomment-406934428
    
    Author: Kouhei Sutou <ko...@clear-code.com>
    
    Closes #2305 from kou/glib-add-missing-export and squashes the following commits:
    
    99f90f60 <Kouhei Sutou>  Add missing exports
---
 c_glib/test/run-test.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/c_glib/test/run-test.sh b/c_glib/test/run-test.sh
index d563e85..9abd035 100755
--- a/c_glib/test/run-test.sh
+++ b/c_glib/test/run-test.sh
@@ -33,6 +33,7 @@ for module in ${modules}; do
     fi
   fi
 done
+export LD_LIBRARY_PATH
 
 if [ -f "Makefile" -a "${NO_MAKE}" != "yes" ]; then
   make -j8 > /dev/null || exit $?
@@ -49,5 +50,6 @@ for module in ${modules}; do
     GI_TYPELIB_PATH="${module_typelib_dir}:${GI_TYPELIB_PATH}"
   fi
 done
+export GI_TYPELIB_PATH
 
 ${GDB} ruby ${test_dir}/run-test.rb "$@"