Browse Source

Uninstall the ant RPMs hint by Robert Koberg

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277679 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 20 years ago
parent
commit
9d2a9aaa6e
3 changed files with 50 additions and 1 deletions
  1. +1
    -1
      docs/external.html
  2. +25
    -0
      docs/faq.html
  3. +24
    -0
      xdocs/faq.xml

+ 1
- 1
docs/external.html View File

@@ -3755,7 +3755,7 @@
</th>
<td colspan="1" rowspan="1"
valign="top" align="left">
<a href="http://www.nurflugel.com/webstart/AntScriptVisualizer">http://www.nurflugel.com/webstart/AntScriptVisualizer</a>
<a href="http://www.nurflugel.com/webstart/AntScriptVisualizer/">http://www.nurflugel.com/webstart/AntScriptVisualizer/</a>
</td>
</tr>
<tr>


+ 25
- 0
docs/faq.html View File

@@ -203,6 +203,10 @@
<li><a href="#no-gnu-tar">
I get checksum errors when I try to extract the
<code>tar.gz</code> distribution file. Why?
</a></li>
<li><a href="#RedHat_ES_3">
How do you get ant-1.6.x (or any version later than
1.5.2) to work on on RedHat ES 3?
</a></li>
</ul>
<h4 class="toc">How do I ...</h4>
@@ -632,6 +636,27 @@
found <a href="http://www.gnu.org/software/tar/tar.html">here</a>,
or use the zip archive instead (you can extract it using
<code>jar xf</code>).</p>
<p class="faq">
<a name="RedHat_ES_3"></a>
How do you get ant-1.6.x (or any version later than
1.5.2) to work on on RedHat ES 3?
</p>
<p>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.</p>
<p>To use a later version of ant on this OS you could do the
following:</p>
<pre class="code">
$ 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
</pre>
<p class="faq">
<a name="implement-os-specific-configuration"></a>
How do I realize os--specific configurations?


+ 24
- 0
xdocs/faq.xml View File

@@ -225,6 +225,30 @@
<code>jar xf</code>).</p>
</answer>
</faq>

<faq id="RedHat_ES_3">
<question>How do you get ant-1.6.x (or any version later than
1.5.2) to work on on RedHat ES 3?</question>
<answer>
<p>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.</p>

<p>To use a later version of ant on this OS you could do the
following:</p>

<source><![CDATA[
$ 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
]]></source></answer>
</faq>
</faqsection>

<faqsection title="How do I ...">


Loading…
Cancel
Save