summaryrefslogblamecommitdiffstats
path: root/needs-checking/patchdesc
blob: 2f0fdaf2607ea5a4f00d6355849b0ed2a6747494 (plain) (tree)
1
2
3
4
5
6
7






                                                                      






















                                                               
#! /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 ||
. $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