guix-commits
[Top][All Lists]
Advanced

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

05/05: gnu: psmisc: Use G-Expressions.


From: guix-commits
Subject: 05/05: gnu: psmisc: Use G-Expressions.
Date: Sat, 16 Sep 2023 09:22:14 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 32b4f59433df620ab8f4b9a6c523f8ef9500d75d
Author: Bruno Victal <mirai@makinata.eu>
AuthorDate: Tue Mar 21 19:23:21 2023 +0000

    gnu: psmisc: Use G-Expressions.
    
    * gnu/packages/linux.scm (psmisc): Use G-Expressions.
    
    Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
---
 gnu/packages/linux.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 1d34cf8ae6..9a49c090aa 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2098,12 +2098,12 @@ deviation, and minimum and maximum values.  It can show 
a nice histogram too.")
        (base32 "12z5786dnf37n8wvv73wdcqp3nvsqzhwdk3ajna0mag4yz1fqdyw"))))
     (build-system gnu-build-system)
     (arguments
-     `(,@(if (%current-target-system)
-             '(#:configure-flags
-               (list
-                "ac_cv_func_malloc_0_nonnull=yes"
-                "ac_cv_func_realloc_0_nonnull=yes"))
-             '())))
+     (list
+      #:configure-flags
+      (if (%current-target-system)
+          #~(list "ac_cv_func_malloc_0_nonnull=yes"
+                  "ac_cv_func_realloc_0_nonnull=yes")
+          #~'())))
     (inputs (list ncurses))
     (home-page "https://gitlab.com/psmisc/psmisc";)
     (synopsis "Small utilities that use the proc file system")



reply via email to

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