diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2018-12-07 15:31:13 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2018-12-07 15:31:13 -0600 |
commit | d95425b08a1675efb66def056d0f92e6b2d78a77 (patch) | |
tree | 0be39f49e6f347f66b601be06da5997cc1160521 /sh/Makefile | |
parent | 76420d9849e6832a52aa4c1ba1fd2895b7d51a08 (diff) |
rc-cgroup.sh: remove shebang line
This is not a stand-alone script, so it does not need the shebang line.
This also means it is not necessary to run this through sed.
Diffstat (limited to 'sh/Makefile')
-rw-r--r-- | sh/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sh/Makefile b/sh/Makefile index e5029bcd..259954c7 100644 --- a/sh/Makefile +++ b/sh/Makefile @@ -2,7 +2,7 @@ DIR= ${LIBEXECDIR}/sh SRCS= init.sh.in functions.sh.in gendepends.sh.in \ openrc-run.sh.in ${SRCS-${OS}} INC= rc-mount.sh functions.sh rc-functions.sh runit.sh s6.sh \ - start-stop-daemon.sh supervise-daemon.sh + start-stop-daemon.sh supervise-daemon.sh ${INC-${OS}} BIN= gendepends.sh init.sh openrc-run.sh ${BIN-${OS}} INSTALLAFTER= _installafter @@ -14,9 +14,9 @@ SRCS-FreeBSD= BIN-FreeBSD= SRCS-Linux= binfmt.sh.in cgroup-release-agent.sh.in init-early.sh.in \ - migrate-to-run.sh.in rc-cgroup.sh.in -BIN-Linux= binfmt.sh cgroup-release-agent.sh init-early.sh migrate-to-run.sh \ - rc-cgroup.sh + migrate-to-run.sh.in +BIN-Linux= binfmt.sh cgroup-release-agent.sh init-early.sh migrate-to-run.sh +INC-Linux= rc-cgroup.sh SRCS-NetBSD= BIN-NetBSD= |