From 02dc4a5f8c1979e9a23f7b6851f693d29b640c4d Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Tue, 21 Jan 2003 09:49:29 +0000 Subject: Version 0.11, from Andreas Gruenbacher --- needs-checking/patchdesc | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 needs-checking/patchdesc (limited to 'needs-checking/patchdesc') diff --git a/needs-checking/patchdesc b/needs-checking/patchdesc new file mode 100755 index 0000000..18d3e94 --- /dev/null +++ b/needs-checking/patchdesc @@ -0,0 +1,24 @@ +#!/bin/sh + +. patchfns 2>/dev/null || +. /usr/lib/patch-scripts/patchfns 2>/dev/null || +. $PATCHSCRIPTS_LIBDIR/patchfns 2>/dev/null || +{ + echo "Impossible to find my library 'patchfns'." + echo "Check your install, or go to the right directory" + exit 1 +} + +desc1() +{ + PATCH=$(stripit $1) + TXT=$(txt_file_name $PATCH) + echo $PATCH.patch + desc < $TXT + echo +} + +for i in $* +do + desc1 $i +done -- cgit