aboutsummaryrefslogtreecommitdiff
path: root/pkgpatch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgpatch')
-rwxr-xr-xpkgpatch14
1 files changed, 0 insertions, 14 deletions
diff --git a/pkgpatch b/pkgpatch
deleted file mode 100755
index d59ea6a..0000000
--- a/pkgpatch
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-# pkgpatch -- patch, saving original files
-
-move()
-{
- for orig in *.$1; do
- mv -i "$orig" "${orig%.$1}".$2
- done
-}
-
-move orig ~1~
-trap 'move ~1~ orig; trap -' INT QUIT TERM EXIT
-patch -Vt -F3 "$@"