aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-09-11 17:53:00 +0100
committerMike McQuaid2016-09-13 07:57:04 +0100
commitc3dab72e3726c3519b39ce1ef5baa31b24198d41 (patch)
treec02dd1375721b1438171e0ad7d48614237e3492d /Library
parentfe661a809c8ec497c8096ec062908ddcb2c84a03 (diff)
downloadbrew-c3dab72e3726c3519b39ce1ef5baa31b24198d41.tar.bz2
extend/ENV/std: fix Rubocop warnings.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/ENV/std.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/extend/ENV/std.rb b/Library/Homebrew/extend/ENV/std.rb
index 8b6a84c47..fec0044a1 100644
--- a/Library/Homebrew/extend/ENV/std.rb
+++ b/Library/Homebrew/extend/ENV/std.rb
@@ -7,8 +7,8 @@ module Stdenv
include SharedEnvExtension
# @private
- SAFE_CFLAGS_FLAGS = "-w -pipe"
- DEFAULT_FLAGS = "-march=core2 -msse4"
+ SAFE_CFLAGS_FLAGS = "-w -pipe".freeze
+ DEFAULT_FLAGS = "-march=core2 -msse4".freeze
def self.extended(base)
unless ORIGINAL_PATHS.include? HOMEBREW_PREFIX/"bin"