diff options
| author | William Hubbs <w.d.hubbs@gmail.com> | 2018-05-22 11:08:35 -0500 | 
|---|---|---|
| committer | William Hubbs <w.d.hubbs@gmail.com> | 2018-05-22 12:20:38 -0500 | 
| commit | 0f4fa41574a4ebf8117493e5411f8ab522010467 (patch) | |
| tree | 41fe9d780d1242a60f1bfbaa616a937c6a5943a5 | |
| parent | 5d6dd97bba3559b57fb1c1de35e644c6dbd6baa7 (diff) | |
| download | openrc-0f4fa41574a4ebf8117493e5411f8ab522010467.tar.xz | |
Add mark_service_crashed binary
| -rw-r--r-- | src/rc/.gitignore | 1 | ||||
| -rw-r--r-- | src/rc/Makefile | 4 | 
2 files changed, 4 insertions, 1 deletions
| diff --git a/src/rc/.gitignore b/src/rc/.gitignore index 91d57075..a43088aa 100644 --- a/src/rc/.gitignore +++ b/src/rc/.gitignore @@ -56,6 +56,7 @@ mark_service_inactive  mark_service_wasinactive  mark_service_hotplugged  mark_service_failed +mark_service_crashed  rc-abort  rc  openrc diff --git a/src/rc/Makefile b/src/rc/Makefile index cb90875c..5e2a5e94 100644 --- a/src/rc/Makefile +++ b/src/rc/Makefile @@ -41,6 +41,7 @@ RC_SBINPROGS=	mark_service_starting mark_service_started \  		mark_service_stopping mark_service_stopped \  		mark_service_inactive mark_service_wasinactive \  		mark_service_hotplugged mark_service_failed \ +		mark_service_crashed \  		rc-abort swclock  ifeq (${OS},Linux) @@ -123,7 +124,8 @@ is_older_than: is_older_than.o rc-misc.o  mark_service_starting mark_service_started \  mark_service_stopping mark_service_stopped \  mark_service_inactive mark_service_wasinactive \ -mark_service_hotplugged mark_service_failed: do_mark_service.o rc-misc.o +mark_service_hotplugged mark_service_failed \ +mark_service_crashed: do_mark_service.o rc-misc.o  	${CC} ${LOCAL_CFLAGS} ${LOCAL_LDFLAGS} ${CFLAGS} ${LDFLAGS} -o $@ $^ ${LDADD}  mountinfo: mountinfo.o _usage.o rc-misc.o | 
