summaryrefslogtreecommitdiffstats
path: root/needs-checking/stripspace
diff options
context:
space:
mode:
authorMartin Quinson <mquinson@debian.org>2003-01-30 17:11:00 +0000
committerMartin Quinson <mquinson@debian.org>2003-01-30 17:11:00 +0000
commita62fb9b3aa2cee7c5a5b5c3e14372faba01f383d (patch)
treef5759b9dd40f7813d3bd05bde37a87d279feccbf /needs-checking/stripspace
parentbaaf1091d9321bf4b8ed0f3e73cf4b47ca05463c (diff)
downloadquilt-a62fb9b3aa2cee7c5a5b5c3e14372faba01f383d.tar.gz
Remove useless oldies. Missing functionnalities needs to be reimplemented almost from the scratch due to the bunch of changes to the core since those scripts were written.
Diffstat (limited to 'needs-checking/stripspace')
-rw-r--r--needs-checking/stripspace24
1 files changed, 0 insertions, 24 deletions
diff --git a/needs-checking/stripspace b/needs-checking/stripspace
deleted file mode 100644
index f81397f..0000000
--- a/needs-checking/stripspace
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/perl
-#
-# Strip whitespace on the end of GNU unified diff insertion lines.
-#
-# Usage:
-# cat foo | stripspace | patch -p1
-# stripspace foo | patch -p1
-#
-# Code fragment taken from the ARM Linux patch system, Copyright
-# (C) Russell King, All Rights Reserved.
-#
-# This script:
-#
-# Copyright (C) 2002 Russell King, All Rights Reserved.
-#
-# 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.
-#
-while (<>) {
- chomp;
- s/\s+$// if m/^\+/;
- print "$_\n";
-}