mac/keg_relocate: Drop unnecessary parens

This commit is contained in:
William Woodruff 2018-12-19 20:23:02 -05:00
parent c4363e8c58
commit d2dc4e5599
No known key found for this signature in database
GPG Key ID: 600D68320BE45ACC

View File

@ -79,7 +79,7 @@ class Keg
suffix = bad_name.sub(/^@rpath/, "")
file.rpaths.each do |rpath|
return (rpath/suffix) if (rpath/suffix).exist?
return rpath/suffix if (rpath/suffix).exist?
end
opoo "Could not find library #{bad_name} for #{file}"