diff options
author | jgart <jgart@dismail.de> | 2022-09-15 20:33:01 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-09-26 23:29:37 +0200 |
commit | 172207924e8491e654623d0a7e7503f80fddafc3 (patch) | |
tree | ddc9e56404ffcb6fc4f4f6338eda2efa7795a289 | |
parent | ddb2b632fa1402a0a52e7f9eb53f7cc0fb79bf5d (diff) |
debug-link: Clarify what CRC is.
* guix/build/debug-link.scm: Clarify "CRC"; update bug URL.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | guix/build/debug-link.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guix/build/debug-link.scm b/guix/build/debug-link.scm index 9167737fb3..f3284f74c4 100644 --- a/guix/build/debug-link.scm +++ b/guix/build/debug-link.scm @@ -38,10 +38,10 @@ ;;; create separate debug files (info "(gdb) Separate Debug Files"). ;;; ;;; The main facility of this module is 'graft-debug-links', which allows us -;;; to update the CRC that appears in '.gnu_debuglink' sections when grafting, -;;; such that separate debug files remain usable after grafting. Failing to -;;; do that, GDB would complain about CRC mismatch---see -;;; <https://bugs.gnu.org/19973>. +;;; to update the cyclic redundancy check (CRC) that appears in +;;; '.gnu_debuglink' sections when grafting, such that separate debug files +;;; remain usable after grafting. Failing to do that, GDB would complain +;;; about CRC mismatch---see <https://issues.guix.gnu.org/19973>. ;;; ;;; Code: |