2006-09-11 04:19:00 +00:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
2001-02-13 12:32:01 +00:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Language" content="en-us">
|
2005-04-29 18:58:16 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="../stylesheets/style.css">
|
2002-02-03 22:00:42 +00:00
|
|
|
<title>Patch Task</title>
|
2001-02-13 12:32:01 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h2><a name="patch">Patch</a></h2>
|
|
|
|
<h3>Description</h3>
|
2002-06-22 23:38:38 +00:00
|
|
|
<p>Applies a diff file to originals. ; requires "patch" to be
|
|
|
|
on the execution path. </p>
|
2001-02-13 12:32:01 +00:00
|
|
|
<h3>Parameters</h3>
|
|
|
|
<table border="1" cellpadding="2" cellspacing="0">
|
|
|
|
<tr>
|
|
|
|
<td valign="top"><b>Attribute</b></td>
|
|
|
|
<td valign="top"><b>Description</b></td>
|
|
|
|
<td align="center" valign="top"><b>Required</b></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">patchfile</td>
|
|
|
|
<td valign="top">the file that includes the diff output</td>
|
|
|
|
<td align="center" valign="top">Yes</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">originalfile</td>
|
|
|
|
<td valign="top">the file to patch</td>
|
|
|
|
<td align="center" valign="top">No, tries to guess it from the diff
|
|
|
|
file</td>
|
|
|
|
</tr>
|
2003-07-07 13:05:03 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">destfile</td>
|
|
|
|
<td valign="top">the file to send the output to instead of
|
|
|
|
patching the file(s) in place. <em>since Ant 1.6</em></td>
|
|
|
|
<td align="center" valign="top">No.</td>
|
|
|
|
</tr>
|
2001-02-13 12:32:01 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">backups</td>
|
|
|
|
<td valign="top">Keep backups of the unpatched files</td>
|
|
|
|
<td align="center" valign="top">No</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">quiet</td>
|
|
|
|
<td valign="top">Work silently unless an error occurs</td>
|
|
|
|
<td align="center" valign="top">No</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">reverse</td>
|
|
|
|
<td valign="top">Assume patch was created with old and new files
|
|
|
|
swapped.</td>
|
|
|
|
<td align="center" valign="top">No</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">ignorewhitespace</td>
|
|
|
|
<td valign="top">Ignore whitespace differences.</td>
|
|
|
|
<td align="center" valign="top">No</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">strip</td>
|
|
|
|
<td valign="top">Strip the smallest prefix containing <i>num</i> leading
|
|
|
|
slashes from filenames.</td>
|
|
|
|
<td align="center" valign="top">No</td>
|
|
|
|
</tr>
|
2002-04-26 11:39:34 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">dir</td>
|
|
|
|
<td valign="top">The directory in which to run the patch command.</td>
|
|
|
|
<td align="center" valign="top">No, default is the project's basedir.</td>
|
|
|
|
</tr>
|
2001-02-13 12:32:01 +00:00
|
|
|
</table>
|
|
|
|
<h3>Examples</h3>
|
|
|
|
<pre> <patch patchfile="module.1.0-1.1.patch"/></pre>
|
|
|
|
<p>applies the diff included in <i>module.1.0-1.1.patch</i> to the
|
|
|
|
files in base directory guessing the filename(s) from the diff output.</p>
|
|
|
|
<pre> <patch patchfile="module.1.0-1.1.patch" strip="1"/></pre>
|
|
|
|
<p>like above but one leading directory part will be removed. i.e. if
|
|
|
|
the diff output looked like</p>
|
|
|
|
<pre>
|
|
|
|
--- a/mod1.0/A Mon Jun 5 17:28:41 2000
|
|
|
|
+++ a/mod1.1/A Mon Jun 5 17:28:49 2000
|
|
|
|
</pre>
|
|
|
|
the leading <i>a/</i> will be stripped.
|
2006-09-11 04:33:25 +00:00
|
|
|
|
2001-02-13 12:32:01 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|