From 75c07dd78f6e30c7c91ed34c2caef1ffe96d7287 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 29 Nov 2013 21:38:27 +0000 Subject: Try to fix build of .dmg for 32-bit OS X. --- platform/osx/make_dmg.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/platform/osx/make_dmg.sh b/platform/osx/make_dmg.sh index ccff4d567..5280d3ede 100644 --- a/platform/osx/make_dmg.sh +++ b/platform/osx/make_dmg.sh @@ -91,7 +91,9 @@ for obj in $WORK/$macos/dcpomatic $WORK/$macos/ffprobe $WORK/$libs/*.dylib; do changes="" for dep in $deps; do base=`basename $dep` - changes="$changes -change $dep @executable_path/../lib/$base" + # $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" done if test "x$changes" != "x"; then install_name_tool $changes $obj -- cgit v1.2.3 From af95bb7c2cebf8793b16c9d103dc84fca13b05de Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 29 Nov 2013 23:00:39 +0000 Subject: ChangeLog. --- ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 1c404dde3..788e658bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-11-29 Carl Hetherington + + * Fix build for 32-bit versions of OS X. + 2013-11-27 Carl Hetherington * Version 1.37 released. -- cgit v1.2.3