diff options
-rw-r--r-- | README | 2 | ||||
-rwxr-xr-x | undopatch | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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. @@ -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 |