aboutsummaryrefslogtreecommitdiff
path: root/undopatch
diff options
context:
space:
mode:
Diffstat (limited to 'undopatch')
-rwxr-xr-xundopatch12
1 files changed, 0 insertions, 12 deletions
diff --git a/undopatch b/undopatch
deleted file mode 100755
index 82a6ae8..0000000
--- a/undopatch
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/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