guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: qemu: Fix the Texinfo manual.


From: guix-commits
Subject: branch master updated: gnu: qemu: Fix the Texinfo manual.
Date: Tue, 06 Apr 2021 16:56:45 -0400

This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 8515a50  gnu: qemu: Fix the Texinfo manual.
8515a50 is described below

commit 8515a506ca71ae5e3709930754d6df77614ffb71
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Apr 6 16:31:16 2021 -0400

    gnu: qemu: Fix the Texinfo manual.
    
    The makeinfo command splits the generated info output in multiple files (in
    300 KiB chunks) by default; this meant the build system would have had to
    install the multiple QEMU.info-1, QEMU.info-2, etc. files for the info 
manual
    to work as intended.  Instead, keep the info manual as one single file by
    specifying the --no-split option to makeinfo.
    
    * gnu/packages/patches/qemu-build-info-manual.patch (sphinxinfo)
    <makeinfo>: Invoke with the --no-split argument.
---
 gnu/packages/patches/qemu-build-info-manual.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/patches/qemu-build-info-manual.patch 
b/gnu/packages/patches/qemu-build-info-manual.patch
index c837040..f2bee30a 100644
--- a/gnu/packages/patches/qemu-build-info-manual.patch
+++ b/gnu/packages/patches/qemu-build-info-manual.patch
@@ -90,7 +90,7 @@ index ebd85d59f9..1243839461 100644
 +      output: 'QEMU.info',
 +      install: true,
 +      install_dir: get_option('infodir'),
-+      command: [makeinfo, '@INPUT0@', '--output=@OUTPUT@'])
++      command: [makeinfo, '--no-split', '@INPUT0@', '--output=@OUTPUT@'])
 +    alias_target('texi', sphinxtexi)
 +    alias_target('info', sphinxinfo)
 +  endif



reply via email to

[Prev in Thread] Current Thread [Next in Thread]