Hi,
I used a private copy of r-cran.mk to work around this problem.
Feel free to apply this patch:
$ diff -u /usr/share/R/debian/r-cran.mk r-cran_without_simple-patchsys.mk
--- /usr/share/R/debian/r-cran.mk 2011-10-31 11:01:59.000000000 +0100
+++ r-cran_without_simple-patchsys.mk 2011-12-17 18:00:48.000000000 +0100
@@ -12,7 +12,12 @@
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/langcore.mk
## include /usr/share/cdbs/1/rules/dpatch.mk
-include /usr/share/cdbs/1/rules/simple-patchsys.mk
+# Check whether source format 3.0 (quilt) is used. If yes, do not include the
conflicting simple-patchsys.mk
+formatfile := $(CURDIR)/debian/source/format
+format_3_quilt = $(shell if [ -f $(formatfile) ] ; then if grep -q
'3.0[[:space:]]*(quilt)' $(formatfile) ; then echo 1 ; else echo 0 ; fi else
echo 0 ; fi )
+ifeq ($(format_3_quilt),0)
+ include /usr/share/cdbs/1/rules/simple-patchsys.mk
+endif
# awk command to extract word after Package or Bundle, not lowercased
awkString := "'/^(Package|Bundle):/ {print $$2 }'"
Kind regards
Andreas.
--
http://fam-tille.de
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]