aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorXiyue Deng2013-11-01 14:46:06 -0700
committerXiyue Deng2013-11-02 01:47:35 -0700
commit6fc6dd791badba63e708623c6db5ecd3d8cb4ac6 (patch)
tree40b300512b4d96d399ec3f491eed1f45486f6b43 /Library/Homebrew
parente24bcba00aceef5d65c8cbbeff023f194fb3ede1 (diff)
downloadbrew-6fc6dd791badba63e708623c6db5ecd3d8cb4ac6.tar.bz2
stdenv: drop space between "-isystem" and path.
* This is consistent with superenv.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/extend/ENV/std.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ENV/std.rb b/Library/Homebrew/extend/ENV/std.rb
index 5c228d84a..3c4904f97 100644
--- a/Library/Homebrew/extend/ENV/std.rb
+++ b/Library/Homebrew/extend/ENV/std.rb
@@ -41,7 +41,7 @@ module Stdenv
unless HOMEBREW_PREFIX.to_s == '/usr/local'
# /usr/local is already an -isystem and -L directory so we skip it
- self['CPPFLAGS'] = "-isystem #{HOMEBREW_PREFIX}/include"
+ self['CPPFLAGS'] = "-isystem#{HOMEBREW_PREFIX}/include"
self['LDFLAGS'] = "-L#{HOMEBREW_PREFIX}/lib"
# CMake ignores the variables above
self['CMAKE_PREFIX_PATH'] = "#{HOMEBREW_PREFIX}"