summaryrefslogtreecommitdiffstats
path: root/needs-checking/join-patch
blob: 5f89a99f20415ccb53da019f1441e52398f46de9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#! /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
}

usage()
{
	echo "Usage: join-patch patchname"
	exit 1
}

if [ $# -ne 1 ]
then
	usage
fi

PATCHNAME=$(stripit $1)

if ! can_apply $PATCHNAME
then
	echo Patch $PATCHNAME does not apply
	exit 1
fi

pcpatch $PATCHNAME
for i in $(files_in_patch $PATCHNAME)
do
	fpatch $i
done

patch -p1 -i $(patch_file_name $PATCHNAME) -f