diff --git a/bootstrap.bat b/bootstrap.bat index b239b551f..f34678b83 100755 --- a/bootstrap.bat +++ b/bootstrap.bat @@ -47,7 +47,7 @@ if not exist build\classes\nul mkdir build\classes echo. echo ... Compiling Ant Classes -"%JAVAC%" -d %CLASSDIR% %TOOLS%\tar\*.java %TOOLS%\zip\*.java %TOOLS%\ant\*.java %TOOLS%\ant\types\*.java %TOOLS%\ant\taskdefs\*.java %TOOLS%\ant\util\*.java %TOOLS%\ant\util\regexp\RegexpMatcher.java %TOOLS%\ant\util\regexp\RegexpMatcherFactory.java %TOOLS%\ant\taskdefs\condition\*.java %TOOLS%\ant\taskdefs\compilers\*.java +"%JAVAC%" -d %CLASSDIR% %TOOLS%\bzip\*.java %TOOLS%\tar\*.java %TOOLS%\zip\*.java %TOOLS%\ant\*.java %TOOLS%\ant\types\*.java %TOOLS%\ant\taskdefs\*.java %TOOLS%\ant\util\*.java %TOOLS%\ant\util\regexp\RegexpMatcher.java %TOOLS%\ant\util\regexp\RegexpMatcherFactory.java %TOOLS%\ant\taskdefs\condition\*.java %TOOLS%\ant\taskdefs\compilers\*.java echo. echo ... Copying Required Files diff --git a/bootstrap.sh b/bootstrap.sh index 5830a082c..c36c7adc5 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -98,7 +98,7 @@ mkdir -p bin echo ... Compiling Ant Classes -"${JAVAC}" -d ${CLASSDIR} ${TOOLS}/tar/*.java ${TOOLS}/zip/*.java \ +"${JAVAC}" -d ${CLASSDIR} ${TOOLS}/bzip/*.java ${TOOLS}/tar/*.java ${TOOLS}/zip/*.java \ ${TOOLS}/ant/util/regexp/RegexpMatcher.java \ ${TOOLS}/ant/util/regexp/RegexpMatcherFactory.java \ ${TOOLS}/ant/util/*.java ${TOOLS}/ant/types/*.java \ diff --git a/docs/manual/CoreTasks/gunzip.html b/docs/manual/CoreTasks/gunzip.html index ccac55199..945eae22d 100644 --- a/docs/manual/CoreTasks/gunzip.html +++ b/docs/manual/CoreTasks/gunzip.html @@ -6,54 +6,7 @@
- -Expands a GZip file.
- -If dest is a directory the name of the destination file is -the same as src (with the ".gz" extension removed if -present). If dest is omitted, the parent dir of src is -taken. The file is only expanded if the source file is newer than the -destination file, or when the destination file does not exist.
- -Attribute | -Description | -Required | -
src | -the file to expand. | -Yes | -
dest | -the destination file or directory. | -No | -
---
<gunzip src="test.tar.gz"/>
expands test.tar.gz to test.tar
----
<gunzip src="test.tar.gz" dest="test2.tar"/>
expands test.tar.gz to test2.tar
----
<gunzip src="test.tar.gz" dest="subdir"/>
expands test.tar.gz to subdir/test.tar (assuming -subdir is a directory).
- -Copyright © 2000,2001 Apache Software Foundation. All rights -Reserved.
- +This document's new home is here