mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: perf-tools: Patch executable file names.
* gnu/packages/instrumentation.scm (perf-tools)[arguments: Add 'patch-file-names' phase. [inputs]: Remove GCC-TOOLCHAIN, which appears to be redundant and would be retained as a reference due to the new phase. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
dc9a5257a9
commit
0d8739bd6d
1 changed files with 11 additions and 2 deletions
|
@ -333,7 +333,17 @@ (define-public perf-tools
|
|||
(base32 "1ab735idi0h62yvhzd7822jj3555vygixv4xjrfrdvi8d2hhz6qn"))))
|
||||
(build-system copy-build-system)
|
||||
(arguments
|
||||
`(#:install-plan
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-file-names
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* '("execsnoop" "killsnoop" "kernel/funcslower")
|
||||
(("/usr/bin/gawk")
|
||||
(search-input-file inputs "/bin/awk")))
|
||||
(substitute* "execsnoop"
|
||||
(("/usr/bin/getconf")
|
||||
(search-input-file inputs "/bin/getconf"))))))
|
||||
#:install-plan
|
||||
',(append
|
||||
(map (cut list <> "bin/")
|
||||
'("disk/bitesize"
|
||||
|
@ -360,7 +370,6 @@ (define-public perf-tools
|
|||
bash
|
||||
coreutils ; cat + rm
|
||||
gawk
|
||||
gcc-toolchain ; objdump + ldconfig
|
||||
file
|
||||
perf
|
||||
perl
|
||||
|
|
Loading…
Reference in a new issue