[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: gnu: autofs: Update to 5.1.7.
From: |
guix-commits |
Subject: |
01/06: gnu: autofs: Update to 5.1.7. |
Date: |
Sun, 28 Mar 2021 12:47:16 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 43469e193ba5c2d06c5f3e10d5550ce7ec201729
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Mar 28 12:51:08 2021 +0200
gnu: autofs: Update to 5.1.7.
* gnu/packages/file-systems.scm (autofs): Update to 5.1.7.
[arguments]: Add a new 'fix-rpath phase.
---
gnu/packages/file-systems.scm | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index 198653c..ae10796 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -80,7 +80,7 @@
(define-public autofs
(package
(name "autofs")
- (version "5.1.6")
+ (version "5.1.7")
(source
(origin
(method url-fetch)
@@ -88,7 +88,7 @@
"v" (version-major version) "/"
"autofs-" version ".tar.xz"))
(sha256
- (base32 "1vya21mb4izj3khcr3flibv7xc15vvx2v0rjfk5yd31qnzcy7pnx"))))
+ (base32 "1myfz6a3wj2c4j9h5g44zj796fdi82jhp1s92w2hg6xp2632csx3"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags
@@ -112,6 +112,12 @@
(("^searchpath=\".*\"")
"searchpath=\"$PATH\""))
#t))
+ (add-before 'configure 'fix-rpath
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (substitute* "Makefile.rules"
+ (("^AUTOFS_LIB_LINK.*=" match)
+ (string-append match " -Wl,-rpath=" out "/lib"))))))
(add-before 'install 'omit-obsolete-lookup_nis.so-link
;; Building lookup_yp.so depends on $(YPCLNT) but this doesn't,
;; leading to a make error. Since it's broken, comment it out.
- branch master updated (510e24f -> b5116db), guix-commits, 2021/03/28
- 01/06: gnu: autofs: Update to 5.1.7.,
guix-commits <=
- 06/06: gnu: gegl: Update to 0.4.28., guix-commits, 2021/03/28
- 02/06: gnu: gramps: Update to 5.1.3., guix-commits, 2021/03/28
- 05/06: gnu: babl: Update to 0.1.86., guix-commits, 2021/03/28
- 04/06: gnu: spdlog: Update to 1.8.5., guix-commits, 2021/03/28
- 03/06: gnu: gnutls: Fix typos in description., guix-commits, 2021/03/28