mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 18:31:00 +03:00
7513807320
There's no need to specify the srcdir explicitly in _HEADERS and EXTRA_DIST. Reviewed-by: Ryan Moeller <ryan@iXsystems.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu> Closes #10493
25 lines
690 B
Makefile
25 lines
690 B
Makefile
pkgdracutdir = $(dracutdir)/modules.d/02zfsexpandknowledge
|
|
pkgdracut_SCRIPTS = \
|
|
module-setup.sh
|
|
|
|
EXTRA_DIST = \
|
|
module-setup.sh.in
|
|
|
|
$(pkgdracut_SCRIPTS):%:%.in
|
|
-$(SED) -e 's,@bindir\@,$(bindir),g' \
|
|
-e 's,@sbindir\@,$(sbindir),g' \
|
|
-e 's,@datadir\@,$(datadir),g' \
|
|
-e 's,@dracutdir\@,$(dracutdir),g' \
|
|
-e 's,@udevdir\@,$(udevdir),g' \
|
|
-e 's,@udevruledir\@,$(udevruledir),g' \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
$< >'$@'
|
|
|
|
# Double-colon rules are allowed; there are multiple independent definitions.
|
|
clean-local::
|
|
-$(RM) $(pkgdracut_SCRIPTS)
|
|
|
|
# Double-colon rules are allowed; there are multiple independent definitions.
|
|
distclean-local::
|
|
-$(RM) $(pkgdracut_SCRIPTS)
|