diff options
| author | Jack Nagel | 2014-09-11 23:26:48 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-09-11 23:26:48 -0500 |
| commit | 0cb85ea5b66eb7c10602a1a3846e9a34057985fd (patch) | |
| tree | a548a30b6586f05958a7d1be3b2d49595ab49fc7 /Library | |
| parent | 07aa77ee68521f6ef981ce325cbbd439691c0dd0 (diff) | |
| download | homebrew-0cb85ea5b66eb7c10602a1a3846e9a34057985fd.tar.bz2 | |
Use safe_system when invoking install_name_tool
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/keg_fix_install_names.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/keg_fix_install_names.rb b/Library/Homebrew/keg_fix_install_names.rb index 37a020365..a315b4214 100644 --- a/Library/Homebrew/keg_fix_install_names.rb +++ b/Library/Homebrew/keg_fix_install_names.rb @@ -100,7 +100,7 @@ class Keg end def install_name_tool(*args) - system(MacOS.locate("install_name_tool"), *args) + safe_system(MacOS.locate("install_name_tool"), *args) end # If file is a dylib or bundle itself, look for the dylib named by |
