Merge pull request #27320 from jtojnar/fix/unbreak-polari

polari: unbreak
This commit is contained in:
Frederik Rietdijk
2017-08-05 17:49:47 +02:00
committed by GitHub
2 changed files with 5 additions and 6 deletions
@@ -39,7 +39,7 @@ wrapGAppsHook() {
targetDirs=( "${prefix}/bin" "${prefix}/libexec" )
for targetDir in "${targetDirs[@]}"; do
if [[ -d "${targetDir}" ]]; then
find "${targetDir}" -type f -executable -print0 \
find -L "${targetDir}" -type f -executable -print0 \
| while IFS= read -r -d '' file; do
echo "Wrapping program ${file}"
wrapProgram "${file}" "${gappsWrapperArgs[@]}"