Move gitapply.sh into patches/, remove unused Makefile.in file.

This commit is contained in:
Sebastian Lackner
2015-04-02 21:59:18 +02:00
parent bd6e9c6b12
commit 0dc851870e
4 changed files with 4 additions and 74 deletions

View File

@@ -175,7 +175,7 @@ if test "$backend" = "patch"; then
patch_apply_file ()
{{
echo "Applying $1"
if ! "$patchdir/../debian/tools/gitapply.sh" $gitapply_args < "$1"; then
if ! "$patchdir/gitapply.sh" $gitapply_args < "$1"; then
abort "Failed to apply patch, aborting!"
fi
}}
@@ -201,7 +201,7 @@ elif test "$backend" = "epatch"; then
shortname="$(basename "$1")"
if grep -q "^GIT binary patch" "$1"; then
ebegin "Applying $shortname"
"$patchdir/../debian/tools/gitapply.sh" $gitapply_args < "$1" || \
"$patchdir/gitapply.sh" $gitapply_args < "$1" || \
die "Failed Patch: $1!"
eend