From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34683) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dphfE-0001dP-Da for guix-patches@gnu.org; Wed, 06 Sep 2017 17:15:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dphf4-0001ej-PG for guix-patches@gnu.org; Wed, 06 Sep 2017 17:15:12 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44791) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dphf4-0001eT-LB for guix-patches@gnu.org; Wed, 06 Sep 2017 17:15:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dphf4-0004Gn-Bv for guix-patches@gnu.org; Wed, 06 Sep 2017 17:15:02 -0400 Subject: [bug#28376] [PATCH] gnu: elogind: Update to 232.4. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34417) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dpheK-00012w-Qs for guix-patches@gnu.org; Wed, 06 Sep 2017 17:14:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dpheH-000145-Kk for guix-patches@gnu.org; Wed, 06 Sep 2017 17:14:16 -0400 Received: from mail-wm0-x235.google.com ([2a00:1450:400c:c09::235]:33007) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dpheH-000133-E6 for guix-patches@gnu.org; Wed, 06 Sep 2017 17:14:13 -0400 Received: by mail-wm0-x235.google.com with SMTP id f145so18744278wme.0 for ; Wed, 06 Sep 2017 14:14:13 -0700 (PDT) From: Peter Mikkelsen Date: Wed, 6 Sep 2017 23:14:08 +0200 Message-Id: <20170906211408.1339-1-petermikkelsen10@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28376@debbugs.gnu.org * gnu/packages/freedesktop.scm (elogind): Update to 232.4. [arguments]: Add --with-rootlibexecdir. --- gnu/packages/freedesktop.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index b1d09104d..89dab53cb 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -204,14 +204,14 @@ the freedesktop.org XDG Base Directory specification.") (define-public elogind (package (name "elogind") - (version "232.3") + (version "232.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/elogind/elogind/" "archive/v" version ".tar.gz")) (sha256 (base32 - "1g3bqzw5dhd5zaivqgbi13n5zy219qmkrk6vmbhfprs8qvyn843f")) + "1qcxian48z2dj5gfmp7brrngdydqf2jm00f4rjr5sy1myh8fy931")) (modules '((guix build utils))) (snippet '(begin @@ -231,6 +231,9 @@ the freedesktop.org XDG Base Directory specification.") "/lib/udev/rules.d") (string-append "--with-rootprefix=" (assoc-ref %outputs "out")) + (string-append "--with-rootlibexecdir=" + (assoc-ref %outputs "out") + "/libexec/elogind") ;; These are needed to ensure that lto linking works. "RANLIB=gcc-ranlib" "AR=gcc-ar" -- 2.14.1