diff options
| author | Jack Nagel | 2014-09-11 23:26:48 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-09-11 23:26:48 -0500 |
| commit | 759b6ce1a96e4623cf15ef76e8f98374bae5975b (patch) | |
| tree | 689c6032546911fe43a04f8ed62eaa7f48c10ce3 | |
| parent | 1e537b579708e75013c4cf503bcd4e3c7af56e37 (diff) | |
| download | brew-759b6ce1a96e4623cf15ef76e8f98374bae5975b.tar.bz2 | |
Use safe_system when invoking install_name_tool
| -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 |
