aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/requirements/ld64_dependency.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/requirements/ld64_dependency.rb b/Library/Homebrew/requirements/ld64_dependency.rb
index 0520c0884..782a50860 100644
--- a/Library/Homebrew/requirements/ld64_dependency.rb
+++ b/Library/Homebrew/requirements/ld64_dependency.rb
@@ -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