aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-09-23 20:06:09 -0500
committerJack Nagel2014-09-23 20:06:09 -0500
commit7b396a5e99a17e74f91fde3b69a15ca8a5063b56 (patch)
treec8e05a5fb6f389e791e107533108e4c7fab93565 /Library
parent22d8380b053afea62d7b249b273fc6b97f2f0e3f (diff)
downloadbrew-7b396a5e99a17e74f91fde3b69a15ca8a5063b56.tar.bz2
Note that the JDK is required for java dependencies
Closes Homebrew/homebrew#32224.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/requirements.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/requirements.rb b/Library/Homebrew/requirements.rb
index ef759ca49..3b6f0fe24 100644
--- a/Library/Homebrew/requirements.rb
+++ b/Library/Homebrew/requirements.rb
@@ -119,10 +119,12 @@ class JavaDependency < Requirement
version_string = " #{@version}" if @version
<<-EOS.undent
- Java#{version_string} is required for Homebrew to install this formula.
+ Java#{version_string} is required to install this formula.
You can install Java from:
http://www.oracle.com/technetwork/java/javase/downloads/index.html
+
+ Make sure you install both the JRE and JDK.
EOS
end
end