diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2017-10-02 18:09:03 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2017-10-02 18:09:09 -0500 |
commit | 3c05db74f6e733890e9035c183a774db3d512512 (patch) | |
tree | ea79fb76103a5e2dc062ed48ce3e2f7d89f913af /src/rc | |
parent | edc54b03770d5f58d1a4969d06c28660003dfb04 (diff) |
remove service binary
The service binary was just a synonym for rc-service, so use rc-service
instead of service. If you want a "service" binary, it should be
something that can determine which service manager you are running and
run the appropriate service manager commands.
Diffstat (limited to 'src/rc')
-rw-r--r-- | src/rc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rc/Makefile b/src/rc/Makefile index a2c7c306..cb90875c 100644 --- a/src/rc/Makefile +++ b/src/rc/Makefile @@ -24,7 +24,7 @@ SBINDIR= ${PREFIX}/sbin LINKDIR= ${LIBEXECDIR} BINPROGS= rc-status -SBINPROGS = openrc openrc-run rc rc-service rc-update runscript service \ +SBINPROGS = openrc openrc-run rc rc-service rc-update runscript \ start-stop-daemon supervise-daemon RC_BINPROGS= einfon einfo ewarnn ewarn eerrorn eerror ebegin eend ewend \ eindent eoutdent esyslog eval_ecolors ewaitfile \ @@ -150,7 +150,7 @@ rc-depend: rc-depend.o _usage.o rc-misc.o rc-status: rc-status.o _usage.o rc-misc.o ${CC} ${LOCAL_CFLAGS} ${LOCAL_LDFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ $^ ${LDADD} -rc-service service: rc-service.o _usage.o rc-misc.o +rc-service: rc-service.o _usage.o rc-misc.o ${CC} ${LOCAL_CFLAGS} ${LOCAL_LDFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ $^ ${LDADD} rc-update: rc-update.o _usage.o rc-misc.o |