summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-07-25 09:31:53 +0100
committerCarl Hetherington <cth@carlh.net>2014-07-25 09:31:53 +0100
commit11b5c27024e0f03bd6d5026c12f0e151babd910d (patch)
tree50787156489ab0569b81132f76c9a7c0ae39407f
parent97e09772b91038e223f16f9bbfd5fdef1a6cd552 (diff)
OS X build debugging.
-rw-r--r--platform/osx/make_dmg.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/osx/make_dmg.sh b/platform/osx/make_dmg.sh
index 750d13962..92d707d80 100644
--- a/platform/osx/make_dmg.sh
+++ b/platform/osx/make_dmg.sh
@@ -113,10 +113,13 @@ for obj in "$WORK/$macos/dcpomatic2" "$WORK/$macos/dcpomatic2_batch" "$WORK/$mac
changes=""
for dep in $deps; do
if [ ! -h "$dep" ]; then
+ echo "Relinking $dep into $obj"
base=`basename $dep`
# $dep will be a path within 64/; make a 32/ path too
dep32=`echo $dep | sed -e "s/\/64\//\/32\//g"`
changes="$changes -change $dep @executable_path/../lib/$base -change $dep32 @executable_path/../lib/$base"
+ else
+ echo "Not relinking symlink $dep"
fi
done
if test "x$changes" != "x"; then