From 955bb8b39127a0bf41560a75fc474e1decae10ab Mon Sep 17 00:00:00 2001 From: "munkyu.im" Date: Mon, 10 Dec 2012 19:24:05 +0900 Subject: [PATCH] script: change library loading env change to DYLD_LIBRARY_PATH to fix loading library sequence Signed-off-by: Munkyu Im --- supplement/emulator-manager-mac-app.sh | 2 +- supplement/emulator-manager-mac.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/supplement/emulator-manager-mac-app.sh b/supplement/emulator-manager-mac-app.sh index c340068..e62e458 100755 --- a/supplement/emulator-manager-mac-app.sh +++ b/supplement/emulator-manager-mac-app.sh @@ -11,7 +11,7 @@ else em_path="." fi -export DYLD_FALLBACK_LIBRARY_PATH=$em_path +export DYLD_LIBRARY_PATH=$em_path:$DYLD_LIBRARY_PATH if [ -f $current_emulmgr ] then diff --git a/supplement/emulator-manager-mac.sh b/supplement/emulator-manager-mac.sh index 58bb0c1..e1db40e 100755 --- a/supplement/emulator-manager-mac.sh +++ b/supplement/emulator-manager-mac.sh @@ -13,7 +13,7 @@ else em_path="." fi -export DYLD_FALLBACK_LIBRARY_PATH=$em_path +export DYLD_LIBRARY_PATH=$em_path:$DYLD_LIBRARY_PATH if [ -f $current_emulmgr ] then -- 2.7.4