1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 13:10:33 +02:00

gnu: mawk: Add symlink to 'awk'.

* gnu/packages/gawk.scm (mawk)[arguments]: Modify phases to add symlink from
'mawk' to 'awk'.

Reported-by: Zack Weinberg
Change-Id: I98e65bf895db9a5a3f36419574fcc21f92a979fc
Closes: 72280@debbugs.gnu.org
This commit is contained in:
Simon Tournier
2024-07-24 23:23:10 +02:00
parent 894c4324ca
commit ed030ecb18

View File

@@ -4,6 +4,7 @@
;;; Copyright © 2018, 2022-2024 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2021, 2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2022 Paul A. Patience <paul@apatience.com>
;;; Copyright © 2024 Simon Tournier <zimon.toutoune@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -164,7 +165,14 @@ block-scoped lexical variables."))))
""))))))
(build-system gnu-build-system)
(arguments
(list #:parallel-build? #f)) ; Prevent a race condition.
(list
#:parallel-build? #f ; Prevent a race condition.
#:phases
#~(modify-phases %standard-phases
(add-after 'install 'symlink-awk
(lambda _
(with-directory-excursion (string-append #$output "/bin")
(symlink "mawk" "awk")))))))
(native-inputs
(list bison))
(synopsis "Text scanning and processing language")