diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index c9cd191894..b65d3eba22 100644 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -790,9 +790,10 @@ class FormulaAuditor problem "Use MacOS.version instead of MACOS_VERSION" end - if line =~ /MACOS_FULL_VERSION/ - problem "Use MacOS.full_version instead of MACOS_FULL_VERSION" - end + # TODO: comment out this after core code and formulae separation. + # if line =~ /MACOS_FULL_VERSION/ + # problem "Use MacOS.full_version instead of MACOS_FULL_VERSION" + # end cats = %w[leopard snow_leopard lion mountain_lion].join("|") if line =~ /MacOS\.(?:#{cats})\?/