|
@@ -203,6 +203,10 @@ |
|
|
<li><a href="#no-gnu-tar"> |
|
|
<li><a href="#no-gnu-tar"> |
|
|
I get checksum errors when I try to extract the |
|
|
I get checksum errors when I try to extract the |
|
|
<code>tar.gz</code> distribution file. Why? |
|
|
<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> |
|
|
</a></li> |
|
|
</ul> |
|
|
</ul> |
|
|
<h4 class="toc">How do I ...</h4> |
|
|
<h4 class="toc">How do I ...</h4> |
|
@@ -632,6 +636,27 @@ |
|
|
found <a href="http://www.gnu.org/software/tar/tar.html">here</a>, |
|
|
found <a href="http://www.gnu.org/software/tar/tar.html">here</a>, |
|
|
or use the zip archive instead (you can extract it using |
|
|
or use the zip archive instead (you can extract it using |
|
|
<code>jar xf</code>).</p> |
|
|
<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"> |
|
|
<p class="faq"> |
|
|
<a name="implement-os-specific-configuration"></a> |
|
|
<a name="implement-os-specific-configuration"></a> |
|
|
How do I realize os--specific configurations? |
|
|
How do I realize os--specific configurations? |
|
|