aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-08-16 20:47:41 -0500
committerJack Nagel2013-08-16 20:50:20 -0500
commite99813240664884e736119956459d8b8250c3af7 (patch)
treeecaf55782ce2fdd1beff03c0ff173715184c1ac3 /Library
parent1bcd428b8e867de1daae3446cb332828056f6d4c (diff)
downloadbrew-e99813240664884e736119956459d8b8250c3af7.tar.bz2
This is a backreference, not an embedded NUL
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/ENV.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ENV.rb b/Library/Homebrew/extend/ENV.rb
index b571d7995..41850fef8 100644
--- a/Library/Homebrew/extend/ENV.rb
+++ b/Library/Homebrew/extend/ENV.rb
@@ -298,7 +298,7 @@ module HomebrewEnvExtension
if compiler != :clang && Hardware.is_32_bit?
# Can't mix "-march" for a 32-bit CPU with "-arch x86_64"
- replace_in_cflags(/-march=\S*/, "-Xarch_#{Hardware::CPU.arch_32_bit} \0")
+ replace_in_cflags(/-march=\S*/, "-Xarch_#{Hardware::CPU.arch_32_bit} \\0")
end
end