summaryrefslogtreecommitdiffstats
path: root/needs-checking/removed-by-patch
diff options
context:
space:
mode:
Diffstat (limited to 'needs-checking/removed-by-patch')
-rwxr-xr-xneeds-checking/removed-by-patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/needs-checking/removed-by-patch b/needs-checking/removed-by-patch
deleted file mode 100755
index e70158d..0000000
--- a/needs-checking/removed-by-patch
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /bin/bash
-
-# This script is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License version 2 as
-# published by the Free Software Foundation.
-#
-# See the COPYING and AUTHORS files for more details.
-
-
-# Extract names of new files from a patch, print them out
-
-PATCHFILE=$1
-case "$PATCHFILE" in
-*.gz) CMD="gzip -d < $PATCHFILE";;
-*) CMD="cat $PATCHFILE";;
-esac
-
-TMP=$(mktemp /tmp/rbp-XXXXXX)
-
-eval $CMD | egrep '^\+\+\+.*1970|\+\+\+.*1969' > $TMP
-sed -e 's@[^/]*/\([^ ]*\).*@\1@' < $TMP | sed -e 's@^linux/@@' | sort
-rm -f $TMP