aboutsummaryrefslogtreecommitdiff
path: root/psu
diff options
context:
space:
mode:
Diffstat (limited to 'psu')
-rwxr-xr-xpsu12
1 files changed, 0 insertions, 12 deletions
diff --git a/psu b/psu
deleted file mode 100755
index a5ad636..0000000
--- a/psu
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh -e
-
-# psu -- undo patches applied to pkgsrc build
-
-d=$(psx) || true
-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