diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-05-18 23:41:52 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-05-18 23:44:21 -0400 |
commit | 321ae25a26986c4ac06e5c0c99d19e1c808da6ac (patch) | |
tree | 23b21727e8984515d90e5d27854da596ce811f0f | |
parent | 03b453cfe54756bcec6b7c7dfaf71566d84c7a75 (diff) | |
download | guix-321ae25a26986c4ac06e5c0c99d19e1c808da6ac.tar.gz |
gnu: sicp: Build as a single info file.
Fixes <https://issues.guix.gnu.org/63565>. * gnu/packages/scheme.scm (sicp) [arguments]: Use '--no-split' makeinfo option in build phase. Reported-by: Andrey Mitrofanov <abme@rambler.ru>
-rw-r--r-- | gnu/packages/scheme.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index a0b547bfc7..2337b60ee9 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -639,7 +639,8 @@ threads.") "")))) (add-before 'install 'build (lambda _ - (invoke "makeinfo" "--output=sicp.info" + (invoke "makeinfo" "--no-split" + "--output=sicp.info" "sicp-pocket.texi")))))) (home-page "https://sarabander.github.io/sicp") (synopsis "Structure and Interpretation of Computer Programs") |