gnu: perf: Install libraries to lib/ instead of lib64/.

* gnu/packages/linux.scm (perf)[arguments]: Add "lib=lib" to
  #:make-flags.
master
Ludovic Courtès 2015-01-21 15:04:09 +01:00
parent b1fb4b2371
commit 2af29d239b
1 changed files with 5 additions and 1 deletions

View File

@ -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)