From fc6281de97e0b6f4b727936d2779695caee2d78f Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Tue, 21 Jan 2003 09:59:35 +0000 Subject: - Catch up to akmp version 0.10 (only files in need-checking were modified) - Use bash ; use a proper first line (ie "#! /bin/bash", the space is needed on some rare platforms) - Add a header stating that the code is GPL in all scripts --- needs-checking/rename-patch | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) (limited to 'needs-checking/rename-patch') diff --git a/needs-checking/rename-patch b/needs-checking/rename-patch index e6e1af0..c186170 100755 --- a/needs-checking/rename-patch +++ b/needs-checking/rename-patch @@ -1,4 +1,10 @@ -#!/bin/sh +#! /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. . patchfns 2>/dev/null || . /usr/lib/patch-scripts/patchfns 2>/dev/null || @@ -9,8 +15,18 @@ exit 1 } -OLD=$(stripit $1) -NEW=$(stripit $2) +if [ $# -eq 1 ] +then + OLD=$(stripit $1) + NEW=_$OLD +elif [ $# -eq 2 ] +then + OLD=$(stripit $1) + NEW=$(stripit $2) +else + echo "Usage: rename-patch old [new]" + exit 1 +fi mv $(pc_file_name $OLD) $(pc_file_name $NEW) mv $(patch_file_name $OLD) $(patch_file_name $NEW) -- cgit