summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2013-05-16 03:09:48 +0200
committerAxel Beckert <abe@deuxchevaux.org>2013-05-16 03:16:26 +0200
commit1fbf645c2eddeeac03c2c4212ce2816543185047 (patch)
tree3f2e4c55e80cbd72378e1a8d9a2c35c5f2764628
parent745727de1fe8d0c812b8744f8bbb40d0c2393628 (diff)
downloadscreen-1fbf645c2eddeeac03c2c4212ce2816543185047.tar.gz
Update debian/patches/13split_info_files.patch: --split to --split-size
The makeinfo option --split is now ambiguous. Explicitly use --split-size. Fixes FTBFS with texinfo 5.x. Closes: #707530
-rw-r--r--debian/changelog8
-rw-r--r--debian/patches/13split_info_files.patch8
2 files changed, 13 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index cead254..64dd920 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+screen (4.1.0~20120320gitdb59704-8) UNRELEASED; urgency=low
+
+ * Update debian/patches/13split_info_files.patch to change now ambiguous
+ makeinfo option --split to --split-size. Fixes FTBFS with texinfo 5.x.
+ (Closes: #707530)
+
+ -- Axel Beckert <abe@debian.org> Thu, 16 May 2013 03:15:42 +0200
+
screen (4.1.0~20120320gitdb59704-7) unstable; urgency=low
* Extend 60-644788-screen-4.1.0-4.0.3-interoperability.patch:
diff --git a/debian/patches/13split_info_files.patch b/debian/patches/13split_info_files.patch
index 9944796..55bab19 100644
--- a/debian/patches/13split_info_files.patch
+++ b/debian/patches/13split_info_files.patch
@@ -1,6 +1,8 @@
Author: <hesso@pool.math.tu-berlin.de>
-Description: Split the info files at 50k to match the distribution style
-of the orig tarball.
+Description: Split the info files at 50k
+ This matches the distribution style of the orig tarball.
+Last-Revised: 2013-05-16 by Axel Beckert <abe@debian.org>
+
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -28,7 +28,7 @@
@@ -8,7 +10,7 @@ of the orig tarball.
info screen.info: screen.texinfo
@rm -f screen.info*
- $(MAKEINFO) $(srcdir)/screen.texinfo -o screen.info
-+ $(MAKEINFO) --split 50000 $(srcdir)/screen.texinfo -o screen.info
++ $(MAKEINFO) --split-size=50000 $(srcdir)/screen.texinfo -o screen.info
install: installdirs
$(INSTALL_DATA) $(srcdir)/screen.1 $(DESTDIR)$(mandir)/man1/screen.1