diff options
| author | Jack Nagel | 2013-12-14 09:35:58 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-12-14 09:35:58 -0600 |
| commit | f4e23b2227d142bc284544aa6ac6a2b15cd40a06 (patch) | |
| tree | 71a209a353fb3282653bdb34bc57e0c98d6a05ee | |
| parent | ce19fa222361839d2c04986f81ae66c8a8748a61 (diff) | |
| download | brew-f4e23b2227d142bc284544aa6ac6a2b15cd40a06.tar.bz2 | |
Remove unnecessary captures in otool regexp
| -rw-r--r-- | Library/Homebrew/mach.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/mach.rb b/Library/Homebrew/mach.rb index a7a4b1a70..54e65a0a9 100644 --- a/Library/Homebrew/mach.rb +++ b/Library/Homebrew/mach.rb @@ -46,7 +46,7 @@ module ArchitectureListExtension end module MachO - OTOOL_RX = /\t(.*) \(compatibility version (\d+\.)*\d+, current version (\d+\.)*\d+\)/ + OTOOL_RX = /\t(.*) \(compatibility version (?:\d+\.)*\d+, current version (?:\d+\.)*\d+\)/ # Mach-O binary methods, see: # /usr/include/mach-o/loader.h |
