Gentoo Archives: gentoo-dev

From: "Michał Górny" <mgorny@g.o>
To: gentoo-dev@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: [gentoo-dev] [PATCH 4/5] sys-apps/openrc: Remove unnecessary option switch to path_exists
Date: Thu, 09 Aug 2018 02:20:40
Message-Id: 20180808213418.28823-4-mgorny@gentoo.org
In Reply to: [gentoo-dev] [PATCH 1/5] media-plugins/vdr-live: Replace unnecessary path_exists calls by "Michał Górny"
1 The option switch is meaningless for this path_exists call, so remove it
2 and stay with the implicit default.
3 ---
4 sys-apps/openrc/openrc-0.34.11.ebuild | 2 +-
5 1 file changed, 1 insertion(+), 1 deletion(-)
6
7 diff --git a/sys-apps/openrc/openrc-0.34.11.ebuild b/sys-apps/openrc/openrc-0.34.11.ebuild
8 index 4e2ed59e45f4..dd3704b2427e 100644
9 --- a/sys-apps/openrc/openrc-0.34.11.ebuild
10 +++ b/sys-apps/openrc/openrc-0.34.11.ebuild
11 @@ -289,7 +289,7 @@ pkg_postinst() {
12 fi
13
14 # Handle the conf.d/local.{start,stop} -> local.d transition
15 - if path_exists -o "${EROOT}"etc/conf.d/local.{start,stop} ; then
16 + if path_exists "${EROOT}"etc/conf.d/local.{start,stop} ; then
17 elog "Moving your ${EROOT}etc/conf.d/local.{start,stop}"
18 elog "files to ${EROOT}etc/local.d"
19 mv "${EROOT}"etc/conf.d/local.start "${EROOT}"etc/local.d/baselayout1.start
20 --
21 2.18.0