diff --git a/docs/external.html b/docs/external.html index 9a073252c..860aec553 100644 --- a/docs/external.html +++ b/docs/external.html @@ -3755,7 +3755,7 @@ - http://www.nurflugel.com/webstart/AntScriptVisualizer + http://www.nurflugel.com/webstart/AntScriptVisualizer/ diff --git a/docs/faq.html b/docs/faq.html index d44e8748f..3dbcbb2e1 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -203,6 +203,10 @@
  • I get checksum errors when I try to extract the tar.gz distribution file. Why? +
  • +
  • + How do you get ant-1.6.x (or any version later than + 1.5.2) to work on on RedHat ES 3?
  • How do I ...

    @@ -632,6 +636,27 @@ found here, or use the zip archive instead (you can extract it using jar xf).

    +

    + + How do you get ant-1.6.x (or any version later than + 1.5.2) to work on on RedHat ES 3? +

    +

    Redhat ES 3.0 comes installed with ant 1.5.2. Even if you + have your PATH and ANT_HOME variables set correctly to a later + version of ant, you will always be forced to use the + preinstalled version.

    +

    To use a later version of ant on this OS you could do the + following:

    +
    +$ ant -version
    +Apache Ant version 1.5.2-23 compiled on November 12 2003
    +$ su -
    +# rpm -e ant ant-libs
    +# exit
    +$ hash -r
    +$ ant -version
    +Apache Ant version 1.6.2 compiled on July 16 2004
    +

    How do I realize os--specific configurations? diff --git a/xdocs/faq.xml b/xdocs/faq.xml index 259c2844a..12e2732f9 100644 --- a/xdocs/faq.xml +++ b/xdocs/faq.xml @@ -225,6 +225,30 @@ jar xf).

    + + + How do you get ant-1.6.x (or any version later than + 1.5.2) to work on on RedHat ES 3? + +

    Redhat ES 3.0 comes installed with ant 1.5.2. Even if you + have your PATH and ANT_HOME variables set correctly to a later + version of ant, you will always be forced to use the + preinstalled version.

    + +

    To use a later version of ant on this OS you could do the + following:

    + +
    +