mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00: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
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
;;; 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>
|
;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
#t)))
|
#t)))
|
||||||
,@(if (any (cute string-prefix? <> (or (%current-target-system)
|
,@(if (any (cute string-prefix? <> (or (%current-target-system)
|
||||||
(%current-system)))
|
(%current-system)))
|
||||||
'("x64_64" "i686"))
|
'("x86_64" "i686"))
|
||||||
;; Transparent huge pages are only enabled by default on Intel processors
|
;; Transparent huge pages are only enabled by default on Intel processors
|
||||||
'()
|
'()
|
||||||
'(#:configure-flags (list "--disable-thp")))))
|
'(#:configure-flags (list "--disable-thp")))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue