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

kszucs pushed a commit to branch release-8.0.0
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit ab6cf83bdaf4a23b3fd6014567c9e9be3d17dc4e
Author: Krisztián Szűcs <[email protected]>
AuthorDate: Tue May 3 13:33:21 2022 +0200

    MINOR: [Release] Export DYLD_LIBRARY_PATH instead of LD_LIBRARY_PATH during 
verification on macOS (#13045)
---
 dev/release/verify-release-candidate.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev/release/verify-release-candidate.sh 
b/dev/release/verify-release-candidate.sh
index b62fbeec52..e71d785ff2 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -908,13 +908,14 @@ ensure_source_directory() {
 test_source_distribution() {
   export ARROW_HOME=$ARROW_TMPDIR/install
   export PARQUET_HOME=$ARROW_TMPDIR/install
-  export LD_LIBRARY_PATH=$ARROW_HOME/lib:${LD_LIBRARY_PATH:-}
   export PKG_CONFIG_PATH=$ARROW_HOME/lib/pkgconfig:${PKG_CONFIG_PATH:-}
 
   if [ "$(uname)" == "Darwin" ]; then
     NPROC=$(sysctl -n hw.ncpu)
+    export DYLD_LIBRARY_PATH=$ARROW_HOME/lib:${DYLD_LIBRARY_PATH:-}
   else
     NPROC=$(nproc)
+    export LD_LIBRARY_PATH=$ARROW_HOME/lib:${LD_LIBRARY_PATH:-}
   fi
 
   pushd $ARROW_SOURCE_DIR

Reply via email to