diff options
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | debian/patches/13split_info_files.patch | 8 |
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 |