Skip to content
Snippets Groups Projects
Commit a8ed06ba authored by Andrew Janke's avatar Andrew Janke
Browse files

superenv: allow paths under self's keg


Fixes build error in Homebrew/homebrew-core#100.

Closes #63.

Signed-off-by: default avatarAndrew Janke <andrew@apjanke.net>
parent 4e8c6e63
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ require "set"
class Cmd
attr_reader :config, :prefix, :cellar, :opt, :tmpdir, :sysroot, :deps
attr_reader :archflags, :optflags, :keg_regex
attr_reader :archflags, :optflags, :keg_regex, :formula, :formula_version
def initialize(arg0, args)
@arg0 = arg0
......@@ -29,6 +29,8 @@ class Cmd
@archflags = ENV.fetch("HOMEBREW_ARCHFLAGS") { "" }.split(" ")
@optflags = ENV.fetch("HOMEBREW_OPTFLAGS") { "" }.split(" ")
@deps = Set.new(ENV.fetch("HOMEBREW_DEPENDENCIES") { "" }.split(","))
@formula = ENV["HOMEBREW_FORMULA"]
@formula_version = ENV["HOMEBREW_FORMULA_VERSION"]
# matches opt or cellar prefix and formula name
@keg_regex = %r[(#{Regexp.escape(opt)}|#{Regexp.escape(cellar)})/([\w\-_\+]+)]
end
......@@ -205,9 +207,12 @@ class Cmd
# but is currently opt-in.
return keep_orig?(path) unless ENV["HOMEBREW_EXPERIMENTAL_FILTER_FLAGS_ON_DEPS"]
# Allow references to self
if keg_path && path.start_with?(keg_path)
true
# first two paths: reject references to Cellar or opt paths
# for unspecified dependencies
if path.start_with?(cellar) || path.start_with?(opt)
elsif path.start_with?(cellar) || path.start_with?(opt)
dep = path[keg_regex, 2]
dep && @deps.include?(dep)
elsif path.start_with?(prefix)
......@@ -276,6 +281,11 @@ class Cmd
%W[#{sysroot}/usr/lib /usr/local/lib]
end
def keg_path
return nil if formula.nil?
"#{cellar}/#{formula}/#{formula_version}"
end
def configure?
# configure scripts generated with autoconf 2.61 or later export as_nl
ENV.key? "as_nl"
......
......@@ -68,6 +68,10 @@ module Superenv
self["HOMEBREW_INCLUDE_PATHS"] = determine_include_paths
self["HOMEBREW_LIBRARY_PATHS"] = determine_library_paths
self["HOMEBREW_DEPENDENCIES"] = determine_dependencies
unless formula.nil?
self["HOMEBREW_FORMULA"] = formula.name
self["HOMEBREW_FORMULA_VERSION"] = formula.version
end
if MacOS::Xcode.without_clt? || (MacOS::Xcode.installed? && MacOS::Xcode.version.to_i >= 7)
self["MACOSX_DEPLOYMENT_TARGET"] = MacOS.version.to_s
......
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