guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Fix a crash in NTP and Chrony.


From: guix-commits
Subject: branch master updated: gnu: Fix a crash in NTP and Chrony.
Date: Sun, 13 Sep 2020 15:46:45 -0400

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 898fbb6  gnu: Fix a crash in NTP and Chrony.
898fbb6 is described below

commit 898fbb60b2354e82e5b7f259b44dbfed112a83aa
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Fri Sep 11 20:51:22 2020 -0400

    gnu: Fix a crash in NTP and Chrony.
    
    Fixes <https://bugs.gnu.org/43321>.
    
    * gnu/packages/ntp.scm (ntp, chrony)[inputs]: Replace libcap with 
libcap/next.
---
 gnu/packages/ntp.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm
index 6b725c2..5fa7d55 100644
--- a/gnu/packages/ntp.scm
+++ b/gnu/packages/ntp.scm
@@ -80,7 +80,7 @@
     (native-inputs
      `(("pkg-config" ,pkg-config)))
     (inputs
-     `(("libcap" ,libcap)
+     `(("libcap" ,libcap/next)
        ("libseccomp" ,libseccomp)
        ("nettle" ,nettle)))
     (home-page "https://chrony.tuxfamily.org/";)
@@ -143,7 +143,7 @@ time-stamping or reference clock, sub-microsecond accuracy 
is possible.")
       ;; to run as non-root (when invoked with '-u'.)
       ,@(if (string-suffix? "-linux"
                             (or (%current-target-system) (%current-system)))
-            `(("libcap" ,libcap))
+            `(("libcap" ,libcap/next))
             '())))
    (arguments
     `(#:phases



reply via email to

[Prev in Thread] Current Thread [Next in Thread]