diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-06 02:06:03 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-06 02:06:03 +0200 |
| commit | a1dd2fefe1e2b6938a6d3644b40b412bdd3010f1 (patch) | |
| tree | ba7c671f1c51ff280b42c582f74bc2c27d43397c | |
| parent | 36d6967da6bb6b3d5313912e232959a530abc4d4 (diff) | |
Try to fix install_name_tool call.
| -rw-r--r-- | platform/osx/make_dmg.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/make_dmg.sh b/platform/osx/make_dmg.sh index 74562a688..84b2c76da 100644 --- a/platform/osx/make_dmg.sh +++ b/platform/osx/make_dmg.sh @@ -269,7 +269,7 @@ function relink_absolute { changes="$changes -change $dep $target/$base" done if test "x$changes" != "x"; then - install_name_tool $changes -id `basename "$obj"` "$obj" + install_name_tool $changes -id "`basename "$obj"`" "$obj" fi done } |
