update to master version of fluidsynth to get more public API. fix make_portable.sh issue with copying same file multiple times into same place (you would clash with a previous attempt, which was not yet writeable)

This commit is contained in:
Alex Birch
2018-06-17 17:18:03 +01:00
parent db92ea15c8
commit 39c54f0139
3 changed files with 47 additions and 13 deletions

View File

@ -67,7 +67,10 @@ DEP_PATHS=$(get_env_specific_dependencies_recursive "$BINARY")
mkdir -p "$LIB"
echo "$DEP_PATHS" \
| xargs -n 1 -I'{}' cp {} "$LIB/"
| xargs -n1 realpath \
| sort \
| uniq \
| xargs -I'{}' cp {} "$LIB/"
chmod +w "$LIB"/*.dylib