Skip to content
Snippets Groups Projects
Commit a379fc7f authored by Jack Nagel's avatar Jack Nagel
Browse files

Remove nil split monkeypatch

parent bef9ec29
No related branches found
No related tags found
No related merge requests found
......@@ -217,15 +217,17 @@ class Cmd
syspath.map{|d| "#{d}/lib" }.reject{|d| d == "#{brewfix}/lib" }
end
def cpath
cpath = ENV['CMAKE_PREFIX_PATH'].split(':').map{|d| "#{d}/include" } + ENV['CMAKE_INCLUDE_PATH'].split(':')
cpath = path_split("CMAKE_PREFIX_PATH").map! { |d| File.join(d, "include") }
cpath += path_split("CMAKE_INCLUDE_PATH")
opt = cpath.grep(%r{^#{Regexp.escape(brewfix)}/opt})
sys = cpath - opt
[sys, opt]
end
def libpath
ENV['CMAKE_PREFIX_PATH'].split(':').map{|d| "#{d}/lib" } +
ENV['CMAKE_LIBRARY_PATH'].split(':') -
syslibpath
libpath = path_split("CMAKE_PREFIX_PATH").map! { |d| File.join(d, "lib") }
libpath += path_split("CMAKE_LIBRARY_PATH")
libpath -= syslibpath
libpath
end
def ldflags
args = path_flags("-L", libpath)
......@@ -278,6 +280,9 @@ class Cmd
paths = paths.uniq.select { |path| File.directory?(path) }
paths.map! { |path| prefix + path }
end
def path_split(key)
ENV.fetch(key) { "" }.split(File::PATH_SEPARATOR)
end
end
if __FILE__ == $PROGRAM_NAME
......
......@@ -11,5 +11,4 @@ end
class NilClass
def chuzzle; end
def split(x); [] end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment