summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2018-04-17 23:42:27 -0400
committerAndrew Morrow <acm@mongodb.com>2018-04-19 18:06:01 -0400
commit964469f09978ed5c9ca340aee4014269ed29a7ae (patch)
tree90ba2339fa3a8ed974be75487831154daf0d5ac7 /etc
parentf39a2374e525e250dc145dfc36091038bb4a4fc0 (diff)
downloadmongo-964469f09978ed5c9ca340aee4014269ed29a7ae.tar.gz
SERVER-33911 Use @rpath instead of @loader_path for embedded SDK
Diffstat (limited to 'etc')
-rw-r--r--etc/evergreen.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml
index 5ae7a97deff..a60d2375f9c 100644
--- a/etc/evergreen.yml
+++ b/etc/evergreen.yml
@@ -2842,9 +2842,9 @@ tasks:
if command -v xcrun; then
# fixup the install names.
_LibBsonInstallName=$(xcrun otool -l lib/libbson-1.0.0.dylib | grep mongo-embedded-sdk-${version} | awk '{ print $2 }')
- xcrun install_name_tool -id '@loader_path/../lib/libbson-1.0.0.dylib' lib/libbson-1.0.0.dylib
- xcrun install_name_tool -id '@loader_path/../lib/libmongoc-1.0.0.dylib' lib/libmongoc-1.0.0.dylib
- xcrun install_name_tool -change $_LibBsonInstallName @loader_path/../lib/libbson-1.0.0.dylib lib/libmongoc-1.0.0.dylib
+ xcrun install_name_tool -id '@rpath/libbson-1.0.0.dylib' lib/libbson-1.0.0.dylib
+ xcrun install_name_tool -id '@rpath/libmongoc-1.0.0.dylib' lib/libmongoc-1.0.0.dylib
+ xcrun install_name_tool -change $_LibBsonInstallName @rpath/libbson-1.0.0.dylib lib/libmongoc-1.0.0.dylib
fi
- func: "scons compile"