From 9c476e723c92a7c300c420fa612433f7643995fb Mon Sep 17 00:00:00 2001 From: "Brian J. Murrell" Date: Tue, 22 Jun 2010 15:09:32 -0400 Subject: [PATCH] b=22790 strip the .patch off of the dpatch name When annotating the .dpatch files with the patch name, seeing as we strip the .patch off and replace it with dpatch, do the same in the annotation. --- build/autoMakefile.am.toplevel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/autoMakefile.am.toplevel b/build/autoMakefile.am.toplevel index ef97458..b5d8898 100644 --- a/build/autoMakefile.am.toplevel +++ b/build/autoMakefile.am.toplevel @@ -156,7 +156,7 @@ debs: desc=$$(cat $$file | sed -e '1,/^$$/d' -e '/^---$$/,$$d'); \ dpatch_file=$${file/.patch/.dpatch}; \ sed -e '1,/^---$$/d' $$file | \ - dpatch patch-template -p "$$file" "$$desc" > \ + dpatch patch-template -p "$${file%.patch}" "$$desc" > \ $$dpatch_file; \ echo "faked by make debs run from git" > \ ../patched/$$dpatch_file; \ -- 1.8.3.1