mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: jemalloc: Fix typo.
* gnu/packages/jemalloc.scm (jemalloc)[arguments]: Check for the 'x86_64' architecture.
This commit is contained in:
parent
720a4adc91
commit
05867f9707
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
||||
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
|
@ -54,7 +54,7 @@ (define-public jemalloc
|
|||
#t)))
|
||||
,@(if (any (cute string-prefix? <> (or (%current-target-system)
|
||||
(%current-system)))
|
||||
'("x64_64" "i686"))
|
||||
'("x86_64" "i686"))
|
||||
;; Transparent huge pages are only enabled by default on Intel processors
|
||||
'()
|
||||
'(#:configure-flags (list "--disable-thp")))))
|
||||
|
|
Loading…
Reference in a new issue