diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-06-03 01:30:06 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-06-03 18:23:39 +0200 |
commit | 38adfcd6f5f772695c8958022c1c0fcd9e7aa988 (patch) | |
tree | a5a0051786c86131de75b60a30138d3ab6e75cdd /gnu | |
parent | 0e8d650c4f578a27b30891751780b75239ffd3f8 (diff) |
gnu: rasdaemon: Update to 0.6.7.
* gnu/packages/linux.scm (rasdaemon): Update to 0.6.7.
[arguments]: Add a "--with-sysconfdefdir" configure flag.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 8d93e9e19c..74d5f63df8 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -8065,7 +8065,7 @@ provides user-space tools for creating EROFS file systems.") (define-public rasdaemon (package (name "rasdaemon") - (version "0.6.6") + (version "0.6.7") (source (origin (method git-fetch) @@ -8074,14 +8074,17 @@ provides user-space tools for creating EROFS file systems.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "13g39x19lfjf9izdcb0nlyfjrgpliivhv4nw3ndgyzi59l3yqc0v")))) + (base32 "12ih96jwmr7imp9zyckf9zjqqm5ra1kv5fj6kbw71y6yl31069dz")))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) ("libtool" ,libtool))) (inputs `(("sqlite" ,sqlite))) (arguments - `(#:configure-flags '("--enable-all" - "--localstatedir=/var") + `(#:configure-flags + (list "--enable-all" + ;; Don't install unused /etc/sysconfig/rasdaemon environment file. + "--with-sysconfdefdir=." + "--localstatedir=/var") #:phases (modify-phases %standard-phases (add-before 'configure 'munge-autotools |