aboutsummaryrefslogtreecommitdiff
path: root/undopatch
blob: 82a6ae87d8a345066023542390b9915c76ecb6d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh -e

# undopatch -- undo patches applied to pkgsrc build

d=$(xpkg)
echo=echo
echo "${0##*/}: undoing patches..." 1>&2
[ x"$1" = x"-x" ] && echo= || echo '(preview, no -x)' 1>&2
find work -name '*.orig' | while read -r f; do
	$echo cp "$d/${f#work/}" "${f%.orig}"
	$echo rm "$f"
done