[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch core-updates updated: gnu: jemalloc: Fix typo.
From: |
guix-commits |
Subject: |
branch core-updates updated: gnu: jemalloc: Fix typo. |
Date: |
Tue, 25 Aug 2020 09:14:37 -0400 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch core-updates
in repository guix.
The following commit(s) were added to refs/heads/core-updates by this push:
new 05867f9 gnu: jemalloc: Fix typo.
05867f9 is described below
commit 05867f970782c39ef027e821933af572184e880f
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Aug 25 16:13:13 2020 +0300
gnu: jemalloc: Fix typo.
* gnu/packages/jemalloc.scm (jemalloc)[arguments]: Check for the
'x86_64' architecture.
---
gnu/packages/jemalloc.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/jemalloc.scm b/gnu/packages/jemalloc.scm
index c4b87b5..906330a 100644
--- a/gnu/packages/jemalloc.scm
+++ b/gnu/packages/jemalloc.scm
@@ -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 @@
#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")))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch core-updates updated: gnu: jemalloc: Fix typo.,
guix-commits <=