aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-09-06 12:38:42 -0500
committerJack Nagel2013-09-06 12:38:56 -0500
commit6d7cda77e9a0724b9098b21b630fd0ada4561ae8 (patch)
tree76ed22ebc5e1bf9d2a006b7616b61605acd47d19 /Library
parenta871baadf56164a7e7edc6d26d0b836593e03892 (diff)
downloadbrew-6d7cda77e9a0724b9098b21b630fd0ada4561ae8.tar.bz2
ENV: remove trailing slash from OpenGL header path
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/ENV/super.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ENV/super.rb b/Library/Homebrew/extend/ENV/super.rb
index 9ca88750c..63bae6e9f 100644
--- a/Library/Homebrew/extend/ENV/super.rb
+++ b/Library/Homebrew/extend/ENV/super.rb
@@ -176,7 +176,7 @@ module Superenv
paths << "#{MacOS::X11.include}/freetype2" if x11?
paths << "#{sdk}/usr/include/libxml2" unless deps.include? 'libxml2'
paths << "#{sdk}/usr/include/apache2" if MacOS::Xcode.without_clt?
- paths << "#{sdk}/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers/" unless x11?
+ paths << "#{sdk}/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers" unless x11?
paths << MacOS::X11.include if x11?
paths.to_path_s
end