guix-commits
[Top][All Lists]
Advanced

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

06/08: gnu: f2fs-tools: Remove obsolete phase.


From: guix-commits
Subject: 06/08: gnu: f2fs-tools: Remove obsolete phase.
Date: Mon, 12 Dec 2022 14:24:41 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 9fc171b62a4992415803aec76fdb9c3bf9133f75
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Mon Dec 12 17:36:02 2022 +0100

    gnu: f2fs-tools: Remove obsolete phase.
    
    * gnu/packages/linux.scm (f2fs-tools)[arguments]: Remove.
    (f2fs-tools-1.7)[arguments]: Add #:phases.
---
 gnu/packages/linux.scm | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 4113e8e981..08e6d855eb 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -5947,15 +5947,6 @@ obviously it can be shared with files outside our set).")
                (base32
                 "1ffws8pbpzp9730v0wy5xjas698lnbd2p7wpr2gl4mx45rsay9a5"))))
     (build-system gnu-build-system)
-    (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (add-after 'install 'install-headers
-           (lambda* (#:key outputs #:allow-other-keys)
-             (let* ((out (assoc-ref outputs "out"))
-                    (out-include (string-append out "/include")))
-               (install-file "include/f2fs_fs.h" out-include)
-               (install-file "mkfs/f2fs_format_utils.h" out-include)))))))
     (native-inputs
      (list autoconf automake libtool pkg-config))
     (inputs
@@ -5988,9 +5979,15 @@ disks and SD cards.  This package provides the userland 
utilities.")
     (inputs
      (list `(,util-linux "lib") libselinux))
     (arguments
-     (substitute-keyword-arguments (package-arguments f2fs-tools)
-       ((#:configure-flags _ #~'())
-        #~'("CFLAGS=-fcommon"))))))
+     '(#:configure-flags '("CFLAGS=-fcommon")
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'install 'install-headers
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (out-include (string-append out "/include")))
+               (install-file "include/f2fs_fs.h" out-include)
+               (install-file "mkfs/f2fs_format_utils.h" out-include)))))))))
 
 (define-public f2fs-tools/static
   (static-package



reply via email to

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