gnu: perf: Install libraries to lib/ instead of lib64/.
* gnu/packages/linux.scm (perf)[arguments]: Add "lib=lib" to #:make-flags.
This commit is contained in:
parent
b1fb4b2371
commit
2af29d239b
|
@ -1709,7 +1709,11 @@ in a digital read-out.")
|
|||
%standard-phases)
|
||||
#:make-flags (list (string-append "DESTDIR="
|
||||
(assoc-ref %outputs "out"))
|
||||
"WERROR=0")
|
||||
"WERROR=0"
|
||||
|
||||
;; By default, 'config/Makefile' uses lib64 on
|
||||
;; x86_64. Work around that.
|
||||
"lib=lib")
|
||||
#:tests? #f)) ;no tests
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
|
|
Loading…
Reference in New Issue