diff options
author | Richard Laager <[email protected]> | 2020-02-05 18:01:49 -0600 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2020-03-10 09:53:20 -0700 |
commit | dc4dd467287d1121c0c7e860548293a834774b1a (patch) | |
tree | ffffa93eadf1507c8d630b7c20dcf85727d3a290 /etc | |
parent | ff2f960b2492ecb3db6a2614251240a77874ab93 (diff) |
Make init scripts depend on Makefile
This brings it in line with the example:
https://www.gnu.org/software/automake/manual/html_node/Scripts.html
This way, if the substitution code is changed, they should update.
Signed-off-by: Richard Laager <[email protected]>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/init.d/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/init.d/Makefile.am b/etc/init.d/Makefile.am index 8b1a7cf96..0cccca641 100644 --- a/etc/init.d/Makefile.am +++ b/etc/init.d/Makefile.am @@ -15,7 +15,7 @@ EXTRA_DIST = \ $(top_srcdir)/etc/init.d/zfs-zed.in \ $(top_srcdir)/etc/init.d/zfs.in -$(init_SCRIPTS) $(initconf_SCRIPTS) $(initcommon_SCRIPTS):%:%.in +$(init_SCRIPTS) $(initconf_SCRIPTS) $(initcommon_SCRIPTS):%:%.in Makefile -(if [ -e /etc/debian_version ]; then \ NFS_SRV=nfs-kernel-server; \ else \ |