From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-818852-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 83A7E138D0E for <garchives@archives.gentoo.org>; Fri, 10 Jul 2015 18:26:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC54D14153; Fri, 10 Jul 2015 18:26:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F5791415E for <gentoo-commits@lists.gentoo.org>; Fri, 10 Jul 2015 18:26:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D264340901 for <gentoo-commits@lists.gentoo.org>; Fri, 10 Jul 2015 18:26:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4CDC75E for <gentoo-commits@lists.gentoo.org>; Fri, 10 Jul 2015 18:26:10 +0000 (UTC) From: "William Hubbs" <williamh@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" <williamh@gentoo.org> Message-ID: <1436549050.1736be3bc3ebbc1440f87b49fc353e81fb0a6037.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/savecache.in X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 1736be3bc3ebbc1440f87b49fc353e81fb0a6037 X-VCS-Branch: master Date: Fri, 10 Jul 2015 18:26:10 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b2c179a0-7374-4e28-8238-5045b381432c X-Archives-Hash: 6ab4a69e2450a70d5cd282b628745eb2 commit: 1736be3bc3ebbc1440f87b49fc353e81fb0a6037 Author: Doug Freed <dwfreed <AT> mtu <DOT> edu> AuthorDate: Fri Jul 10 17:24:10 2015 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Fri Jul 10 17:24:10 2015 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=1736be3b savecache: Fix unable to create cache message The cache is created in $RC_LIBEXECDIR, not $RC_SVCDIR, so fix the error message when we fail to create it to match. init.d/savecache.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/savecache.in b/init.d/savecache.in index ddd58d7..e185e5a 100644 --- a/init.d/savecache.in +++ b/init.d/savecache.in @@ -30,7 +30,7 @@ start() if yesno "${RC_GOINGDOWN}"; then rc=0 fi - eend $rc "Unable to create $RC_SVCDIR/cache" + eend $rc "Unable to create $RC_LIBEXECDIR/cache" return $rc fi fi