mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: p7zip: Adjust custom configure phase.
* gnu/packages/compression.scm (p7zip)[arguments]: Use new target macros to simplify custom 'configure phase.
This commit is contained in:
parent
de0954d18c
commit
86fd77476d
1 changed files with 9 additions and 12 deletions
|
@ -1334,18 +1334,15 @@ (define-public p7zip
|
|||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'configure
|
||||
(lambda* (#:key system outputs #:allow-other-keys)
|
||||
(invoke "cp"
|
||||
(let ((system ,(or (%current-target-system)
|
||||
(%current-system))))
|
||||
(cond
|
||||
((string-prefix? "x86_64" system)
|
||||
"makefile.linux_amd64_asm")
|
||||
((string-prefix? "i686" system)
|
||||
"makefile.linux_x86_asm_gcc_4.X")
|
||||
(else
|
||||
"makefile.linux_any_cpu_gcc_4.X")))
|
||||
"makefile.machine")))
|
||||
(lambda _
|
||||
(copy-file
|
||||
,(cond ((target-x86-64?)
|
||||
"makefile.linux_amd64_asm")
|
||||
((target-x86-32?)
|
||||
"makefile.linux_x86_asm_gcc_4.X")
|
||||
(else
|
||||
"makefile.linux_any_cpu_gcc_4.X"))
|
||||
"makefile.machine")))
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
|
|
Loading…
Reference in a new issue