hoju 2005/05/23 23:33:19
Modified: . build.xml
Log:
get rid of unnecessarily verbose warning from the <tar> task about filenames
longer than 100 characters only being compatible with GNU compatible TAR
commands. I simply set <tar .... longfile="gnu"/> and all is quiet.
Jake
Revision Changes Path
1.161 +2 -1 logging-log4j/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/logging-log4j/build.xml,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -r1.160 -r1.161
--- build.xml 22 May 2005 07:32:17 -0000 1.160
+++ build.xml 24 May 2005 06:33:19 -0000 1.161
@@ -804,7 +804,8 @@
<tar tarfile="${dist.images}/logging-log4j-${version}.tar"
basedir="${dist.tmp}"
- includes="logging-log4j-${version}/**" />
+ includes="logging-log4j-${version}/**"
+ longfile="gnu" />
<gzip src="${dist.images}/logging-log4j-${version}.tar"
zipfile="${dist.images}/logging-log4j-${version}.tar.gz" />
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]