diff options
| author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2026-05-17 09:26:57 +0200 |
|---|---|---|
| committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2026-05-17 10:22:35 +0200 |
| commit | 99438d87750aebcb3c7ae9899fce81e9237678ec (patch) | |
| tree | 215022c4eba32e91a91761847effe86a7a9ff6ad /doc | |
| parent | b3a80ed56f86aa29bf5a44aafd44c2fdda425fcd (diff) | |
doc: Substitute `@' with `@@' when generating os-config*.texi files.
* doc/local.mk (%D%/os-config-%.texi): Use SED to substitute `@', rather than
CP.
Change-Id: I515ab99adb3c2c7ee8fa01d314c777df395930fc
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/local.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/local.mk b/doc/local.mk index 9452ccaf35f..5a10e2e2bb9 100644 --- a/doc/local.mk +++ b/doc/local.mk | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | # Copyright © 2016, 2018 Mathieu Lirzin <mthl@gnu.org> | 6 | # Copyright © 2016, 2018 Mathieu Lirzin <mthl@gnu.org> |
| 7 | # Copyright © 2018, 2021 Julien Lepiller <julien@lepiller.eu> | 7 | # Copyright © 2018, 2021 Julien Lepiller <julien@lepiller.eu> |
| 8 | # Copyright © 2019 Timothy Sample <samplet@ngyro.com> | 8 | # Copyright © 2019 Timothy Sample <samplet@ngyro.com> |
| 9 | # Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org> | 9 | # Copyright © 2024, 2026 Janneke Nieuwenhuizen <janneke@gnu.org> |
| 10 | # Copyright © 2024 gemmaro <gemmaro.dev@gmail.com> | 10 | # Copyright © 2024 gemmaro <gemmaro.dev@gmail.com> |
| 11 | # | 11 | # |
| 12 | # This file is part of GNU Guix. | 12 | # This file is part of GNU Guix. |
| @@ -147,7 +147,7 @@ $(srcdir)/%D%/contributing.%.texi: po/doc/guix-manual.%.po guix/build/po.go | |||
| 147 | 147 | ||
| 148 | %D%/os-config-%.texi: gnu/system/examples/%.tmpl | 148 | %D%/os-config-%.texi: gnu/system/examples/%.tmpl |
| 149 | $(AM_V_GEN)$(MKDIR_P) "`dirname $@`"; \ | 149 | $(AM_V_GEN)$(MKDIR_P) "`dirname $@`"; \ |
| 150 | cp "$<" "$@" | 150 | sed -e s,@,@@,g "$<" > "$@" |
| 151 | 151 | ||
| 152 | infoimagedir = $(infodir)/images | 152 | infoimagedir = $(infodir)/images |
| 153 | dist_infoimage_DATA = \ | 153 | dist_infoimage_DATA = \ |
