diff --git a/docs/manual/install.html b/docs/manual/install.html
index 661d8b50b..052a5c3d2 100644
--- a/docs/manual/install.html
+++ b/docs/manual/install.html
@@ -331,10 +331,20 @@ Build failed
So Ant works. This message is there because you need to write an individual buildfile for your
project. With a ant -version you should get an output like
-Apache Ant version 1.7.0 compiled on December 13 2006
+Apache Ant version 1.7.1 compiled on June 27 2008
-
-
+
+If this does not work ensure your environment variables are set right. They must resolve to:
+
+ - required: %ANT_HOME%\bin\ant.bat
+ - optional: %JAVA_HOME%\bin\java.exe
+ - required: %PATH%=...maybe-other-entries...;%ANT_HOME%\bin;...maybe-other-entries...
+
+ANT_HOME is used by the launcher script for finding the libraries.
+JAVA_HOME is used by the launcher for finding the JDK/JRE to use. (JDK is recommended as some tasks
+require the java tools.) If not set, the launcher tries to find one via the %PATH% environment variable.
+PATH is set for user convinience. With that set you can just start ant instead of always typing
+the/complete/path/to/your/ant/installation/bin/ant.