mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
aa2b4896c9
Change the variable substitution in the init script templates according to the method described in the Autoconf manual; Chapter 4.7.2: Installation Directory Variables. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
23 lines
639 B
Makefile
23 lines
639 B
Makefile
initdir = $(DEFAULT_INIT_DIR)
|
|
init_SCRIPTS = zfs
|
|
|
|
EXTRA_DIST = \
|
|
$(top_srcdir)/etc/init.d/zfs.fedora.in \
|
|
$(top_srcdir)/etc/init.d/zfs.gentoo.in \
|
|
$(top_srcdir)/etc/init.d/zfs.lsb.in \
|
|
$(top_srcdir)/etc/init.d/zfs.lunar.in \
|
|
$(top_srcdir)/etc/init.d/zfs.redhat.in \
|
|
$(top_srcdir)/etc/init.d/zfs.arch.in
|
|
|
|
$(init_SCRIPTS):
|
|
-$(SED) -e 's,@bindir\@,$(bindir),g' \
|
|
-e 's,@sbindir\@,$(sbindir),g' \
|
|
-e 's,@udevdir\@,$(udevdir),g' \
|
|
-e 's,@udevruledir\@,$(udevruledir),g' \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
-e 's,@initdir\@,$(initdir),g' \
|
|
'zfs.$(DEFAULT_INIT_SCRIPT).in' >'$@'
|
|
|
|
distclean-local::
|
|
-$(RM) $(init_SCRIPTS)
|