diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2017-08-24 11:34:18 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2017-08-24 11:34:18 -0500 |
commit | d7938f54f29193251e083ad35a7d464949829096 (patch) | |
tree | 91d82fb509a0f731578927a494c47e3358eb296a /src/rc/Makefile | |
parent | cfbe9c2ede24dac530ef58e5c35bd57f22a788a3 (diff) |
start-stop-daemon: move --retry processing code to a shared module
This was part of start-stop-daemon; however, it needs to be shared in
order to be used by supervise-daemon.
Diffstat (limited to 'src/rc/Makefile')
-rw-r--r-- | src/rc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/Makefile b/src/rc/Makefile index 19adcafb..e6c9f4a2 100644 --- a/src/rc/Makefile +++ b/src/rc/Makefile @@ -156,7 +156,7 @@ rc-service service: rc-service.o _usage.o rc-misc.o rc-update: rc-update.o _usage.o rc-misc.o ${CC} ${LOCAL_CFLAGS} ${LOCAL_LDFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ $^ ${LDADD} -start-stop-daemon: start-stop-daemon.o _usage.o rc-misc.o +start-stop-daemon: start-stop-daemon.o _usage.o rc-misc.o rc-schedules.o ${CC} ${LOCAL_CFLAGS} ${LOCAL_LDFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ $^ ${LDADD} supervise-daemon: supervise-daemon.o _usage.o rc-misc.o |