guix-commits
[Top][All Lists]
Advanced

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

11/13: gnu: plocate: Build with "--sharedstatedir=/var".


From: guix-commits
Subject: 11/13: gnu: plocate: Build with "--sharedstatedir=/var".
Date: Tue, 5 Apr 2022 14:43:11 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 84e0cbbc9cbf7e73344969a90ada5b82bd2fe2fc
Author: ykonai <mail@ykonai.net>
AuthorDate: Fri Apr 1 23:32:04 2022 +0200

    gnu: plocate: Build with "--sharedstatedir=/var".
    
    Current plocate package sets the --sharedstatedir to a store directory, 
which
    causes updatedb and plocate to fail by default since the store is immutable.
    This will set the default database path to /var/cache/plocate.db instead.
    
    * gnu/packages/search.scm (plocate): Change build options.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/search.scm | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm
index 6f8d673694..87f29c5424 100644
--- a/gnu/packages/search.scm
+++ b/gnu/packages/search.scm
@@ -487,8 +487,17 @@ conflict with slocate compatibility.")
     (arguments
      `(#:configure-flags
        (list
-        (string-append
-         "--sharedstatedir=" (assoc-ref %outputs "out") "/var"))))
+        ;; Put the database in /var/cache/plocate.db
+        "--sharedstatedir=/var"
+        "-Dinstall_systemd=false"
+        "-Ddbpath=cache/plocate.db")
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'remove-cachedirtag
+           (lambda _
+             (substitute* "meson.build"
+               ;; Remove the script adding a "cachedirtag"
+               (("meson.add_install_script") "#")))))))
     (inputs
      (list liburing
            `(,zstd "lib")))



reply via email to

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