LD64Dependency: super before setting env proc

Otherwise super will overwrite @env_proc with the default value.
This commit is contained in:
Misty De Meo 2014-03-23 15:32:11 -07:00
parent da0df8eabe
commit 0475dbe5cc

View File

@ -5,7 +5,7 @@ require 'dependency'
# that comes with the OS.
class LD64Dependency < Dependency
def initialize(name='ld64', tags=[:build], env_proc=nil)
@env_proc = proc { ENV.ld64 }
super
@env_proc = proc { ENV.ld64 }
end
end