summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-03-22 17:45:31 +0000
committerCarl Hetherington <cth@carlh.net>2014-03-22 17:45:31 +0000
commitdd2d447ed681b2b9fdd98ff7ffd159293af8b9da (patch)
tree3d8d36ee1a6eea53388d5623d1542e841666fd18
parent2ed1916b4c22ff6f3c01a72b046a28fb176a6fb3 (diff)
Try to fix OS X .dmg wrt libxmlsec / libxml2 linkage.
-rw-r--r--platform/osx/make_dmg.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/make_dmg.sh b/platform/osx/make_dmg.sh
index bf7512b93..3664ceba9 100644
--- a/platform/osx/make_dmg.sh
+++ b/platform/osx/make_dmg.sh
@@ -87,7 +87,7 @@ universal_copy $ENV lib/libcurl*.dylib $WORK/$libs
universal_copy $ENV lib/libffi*.dylib $WORK/$libs
for obj in $WORK/$macos/dcpomatic $WORK/$macos/ffprobe $WORK/$libs/*.dylib; do
- deps=`otool -L $obj | awk '{print $1}' | egrep "(/Users/carl|libboost|libssh|libltdl)"`
+ deps=`otool -L $obj | awk '{print $1}' | egrep "(/Users/carl|libboost|libssh|libltdl|libxmlsec)"`
changes=""
for dep in $deps; do
base=`basename $dep`