From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Othacehe Subject: [PATCH 1/5] gnu: tlp: Read configuration from /etc/tlp. Date: Wed, 15 Mar 2017 21:46:38 +0100 Message-ID: <20170315204642.27626-2-m.othacehe@gmail.com> References: <20170315204642.27626-1-m.othacehe@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41838) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1coFov-0003yE-Cu for guix-devel@gnu.org; Wed, 15 Mar 2017 16:46:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1coFot-0004uC-0S for guix-devel@gnu.org; Wed, 15 Mar 2017 16:46:57 -0400 Received: from mail-wm0-x243.google.com ([2a00:1450:400c:c09::243]:36592) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1coFos-0004tf-Qc for guix-devel@gnu.org; Wed, 15 Mar 2017 16:46:54 -0400 Received: by mail-wm0-x243.google.com with SMTP id x124so963626wmf.3 for ; Wed, 15 Mar 2017 13:46:54 -0700 (PDT) In-Reply-To: <20170315204642.27626-1-m.othacehe@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/linux.scm (tlp): Set TLP_CONF to "/etc/tlp". --- gnu/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 28440297e..bb9dbcb3d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3494,7 +3494,7 @@ Light is the successor of lightscript.") (setenv "TLP_BIN" (string-append out "/bin")) (setenv "TLP_TLIB" (string-append out "/share/tlp-pm")) (setenv "TLP_ULIB" (string-append out "/lib/udev")) - (setenv "TLP_CONF" (string-append out "/etc/tlp")) + (setenv "TLP_CONF" "/etc/tlp") (setenv "TLP_SHCPL" (string-append out "/share/bash-completion/completions")) (setenv "TLP_MAN" (string-append out "/share/man"))))) -- 2.12.0