[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/17: gnu: texlive-bin: Use ‘--with-banner-add’ configure option
From: |
guix-commits |
Subject: |
17/17: gnu: texlive-bin: Use ‘--with-banner-add’ configure option |
Date: |
Sat, 24 Jul 2021 10:28:09 -0400 (EDT) |
civodul pushed a commit to branch core-updates
in repository guix.
commit 7bef3be1d318beebaf48ac6daa3140205ba18e98
Author: Thiago Jung Bauermann <bauermann@kolabnow.com>
AuthorDate: Thu Jul 8 19:13:19 2021 -0300
gnu: texlive-bin: Use ‘--with-banner-add’ configure option
The “Building TeX Live” manual has a section about configure options for
distro builds¹. They mention this option:
--with-banner-add=/SomeDistro
This isn’t technically required, but is strongly recommended, so your
build and your distro can be distinguished from others.
Therefore add it to texlive-bin. This is how it appears on LuaTeX, for
example (it also shows up in other engines’ banners):
$ luatex
This is LuaTeX, Version 1.13.0 (TeX Live 2021/GNU Guix)
restricted system commands enabled.
**
The other options mentioned in that section are already being used.
¹ http://www.tug.org/texlive/doc/tlbuild.html#Distro-builds
* gnu/packages/tex.scm (texlive-bin)[arguments]: Add ‘--with-banner-add’
option.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/tex.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 33d9064..bf918ff 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -321,6 +321,7 @@ files from LOCATIONS with expected checksum HASH. CODE is
not currently in use.
'("--disable-static"
"--disable-native-texlive-build"
"--enable-shared"
+ "--with-banner-add=/GNU Guix"
"--with-system-cairo"
"--with-system-freetype2"
"--with-system-gd"
- 06/17: gnu: Use 'search-input-directory' for the OpenEXR header directory., (continued)
- 06/17: gnu: Use 'search-input-directory' for the OpenEXR header directory., guix-commits, 2021/07/24
- 11/17: gnu: Use 'search-input-file' when looking for *.so and *.a., guix-commits, 2021/07/24
- 12/17: gnu: Use 'search-input-file' when looking for executables., guix-commits, 2021/07/24
- 16/17: gnu: glibc: Remove versions 2.27 and 2.28., guix-commits, 2021/07/24
- 07/17: gnu: Use 'search-input-file' when searching for Automake files., guix-commits, 2021/07/24
- 09/17: gnu: Use 'search-input-directory' for glibc locale data., guix-commits, 2021/07/24
- 10/17: gnu: Use 'search-input-directory' when looking for C/C++ library headers., guix-commits, 2021/07/24
- 13/17: gnu: mozjs: Use 'which' where appropriate., guix-commits, 2021/07/24
- 14/17: gnu: Use 'search-input-file' when looking for .jar files., guix-commits, 2021/07/24
- 15/17: gnu: Use 'search-input-directory' and 'search-input-file' where appropriate., guix-commits, 2021/07/24
- 17/17: gnu: texlive-bin: Use ‘--with-banner-add’ configure option,
guix-commits <=