aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rwxr-xr-xundopatch2
2 files changed, 3 insertions, 1 deletions
diff --git a/README b/README
index 13f65cb..f688585 100644
--- a/README
+++ b/README
@@ -46,6 +46,8 @@ files from the downloaded archive.
It is not reliable to restore the original files using the .orig
files, as multiple patches may have been applied to the same file.
+You can use the undopatch script to automate this.
+
= Rebuilding with new patch =
First, you may want to undo the old patches as described above.
diff --git a/undopatch b/undopatch
index 0112101..e46bc54 100755
--- a/undopatch
+++ b/undopatch
@@ -22,5 +22,5 @@ cmd=echo\ cp
[ x"$1" = x"-x" ] && cmd=cp || echo '(preview, no -x)' 1>&2
find . -name '*.orig' | while read f; do
f=${f%.orig}
- $cmd $w/${f#work/} $f
+ $cmd $(dirname $w)/${f#./work/} $f
done