Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 357247 | Differences between
and this patch

Collapse All | Expand All

(-)a/etc/rc.conf.FreeBSD (-1 / +1 lines)
Lines 8-12 Link Here
8
# This should be set to the value representing what environment this file is
8
# This should be set to the value representing what environment this file is
9
# PRESENTLY in, not what virtualization the environment is capable of.
9
# PRESENTLY in, not what virtualization the environment is capable of.
10
# See the OpenRC migration guide for more details.
10
# See the OpenRC migration guide for more details.
11
rc_sys=""
11
rc_sys="@RC_SYS_DEFAULT@"
12
12
(-)a/etc/rc.conf.Linux (-1 / +1 lines)
Lines 13-19 Link Here
13
# This should be set to the value representing what environment this file is
13
# This should be set to the value representing what environment this file is
14
# PRESENTLY in, not what virtualization the environment is capable of.
14
# PRESENTLY in, not what virtualization the environment is capable of.
15
# See the OpenRC migration guide for more details.
15
# See the OpenRC migration guide for more details.
16
rc_sys=""
16
rc_sys="@RC_SYS_DEFAULT@"
17
17
18
##############################################################################
18
##############################################################################
19
# LINUX SPECIFIC OPTIONS
19
# LINUX SPECIFIC OPTIONS
(-)a/etc/rc.conf.NetBSD (-1 / +1 lines)
Lines 9-13 Link Here
9
# This should be set to the value representing what environment this file is
9
# This should be set to the value representing what environment this file is
10
# PRESENTLY in, not what virtualization the environment is capable of.
10
# PRESENTLY in, not what virtualization the environment is capable of.
11
# See the OpenRC migration guide for more details.
11
# See the OpenRC migration guide for more details.
12
rc_sys=""
12
rc_sys="@RC_SYS_DEFAULT@"
13
13
(-)a/mk/scripts.mk (-1 / +1 lines)
Lines 12-18 _PKG_SED:= $(shell ${_PKG_SED_SH}) Link Here
12
_LCL_SED_SH=		if test "${PREFIX}" = "${LOCAL_PREFIX}"; then echo "-e 's:@LOCAL_PREFIX@::g'"; else echo "-e 's:@LOCAL_PREFIX@:${LOCAL_PREFIX}:g'"; fi
12
_LCL_SED_SH=		if test "${PREFIX}" = "${LOCAL_PREFIX}"; then echo "-e 's:@LOCAL_PREFIX@::g'"; else echo "-e 's:@LOCAL_PREFIX@:${LOCAL_PREFIX}:g'"; fi
13
_LCL_SED:=		$(shell ${_LCL_SED_SH})
13
_LCL_SED:=		$(shell ${_LCL_SED_SH})
14
14
15
SED_REPLACE=		-e 's:@SHELL@:${SH}:g' -e 's:@LIB@:${LIBNAME}:g' -e 's:@SYSCONFDIR@:${SYSCONFDIR}:g' -e 's:@LIBEXECDIR@:${LIBEXECDIR}:g' -e 's:@PREFIX@:${PREFIX}:g' ${_PKG_SED} ${_LCL_SED}
15
SED_REPLACE=		-e 's:@SHELL@:${SH}:g' -e 's:@LIB@:${LIBNAME}:g' -e 's:@SYSCONFDIR@:${SYSCONFDIR}:g' -e 's:@LIBEXECDIR@:${LIBEXECDIR}:g' -e 's:@PREFIX@:${PREFIX}:g' -e -e 's:@RC_SYS_DEFAULT@:$(MKRCSYS):g' ${_PKG_SED} ${_LCL_SED}
16
16
17
# Tweak our shell scripts
17
# Tweak our shell scripts
18
.SUFFIXES:	.sh.in .in
18
.SUFFIXES:	.sh.in .in

Return to bug 357247