9a539ebbe1
No need for if() logic. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38 lines
875 B
Makefile
38 lines
875 B
Makefile
DIR= ${SYSCONFDIR}
|
|
SRCS= rc.conf.in rc.in rc.shutdown.in
|
|
BIN= ${BIN-${OS}}
|
|
CONF= rc.conf ${BIN-${OS}}
|
|
|
|
CLEANFILES+= rc.conf
|
|
|
|
MK= ../mk
|
|
include ${MK}/os.mk
|
|
|
|
SED_EXTRA-FreeBSD= -e 's:@TERM@:cons25:g'
|
|
BIN-FreeBSD= rc rc.shutdown rc.devd
|
|
CONF-FreeBSD= devd.conf
|
|
|
|
SED_EXTRA-Linux= -e 's:@TERM@:wsvt25:g'
|
|
BIN-Linux=
|
|
CONF-Linux=
|
|
|
|
SED_EXTRA-NetBSD= -e 's:@TERM@:wsvt25:g'
|
|
BIN-NetBSD= rc rc.shutdown
|
|
CONF-NetBSD=
|
|
|
|
SED_EXTRA= ${SED_EXTRA-${OS}}
|
|
|
|
include ${MK}/scripts.mk
|
|
|
|
# We can't use "ifndef" here because that treats set-but-empty
|
|
# as not-set which is not what we want
|
|
MKRCSYS ?= automagicplease
|
|
ifeq (${MKRCSYS},automagicplease)
|
|
# If the user isn't picking a default, then have the
|
|
# config go with runtime automagic detection #357247
|
|
rc.conf: SED_EXTRA += -e '/^rc_sys=""/s:^:\#:'
|
|
MKRCSYS =
|
|
endif
|
|
rc.conf: rc.conf.in rc.conf.${OS}
|
|
${SED} ${SED_REPLACE} ${SED_EXTRA} $^ > $@
|