mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
b06256a997
The double-colon looked like a typo, but it's actually an obscure feature. Rules with :: may appear multiple times and are run independently of one another in the order they appear. The use of :: for distclean-local was conventional, not accidental. Add comments to indicate the intentional use of double-colon rules. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ryan Moeller <ryan@ixsystems.com> Closes #9210
22 lines
573 B
Makefile
22 lines
573 B
Makefile
udevrule_DATA = \
|
|
69-vdev.rules \
|
|
60-zvol.rules \
|
|
90-zfs.rules
|
|
|
|
EXTRA_DIST = \
|
|
$(top_srcdir)/udev/rules.d/69-vdev.rules.in \
|
|
$(top_srcdir)/udev/rules.d/60-zvol.rules.in \
|
|
$(top_srcdir)/udev/rules.d/90-zfs.rules.in
|
|
|
|
$(udevrule_DATA):%:%.in
|
|
-$(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' \
|
|
$< > '$@'
|
|
|
|
# Double-colon rules are allowed; there are multiple independent definitions.
|
|
distclean-local::
|
|
-$(RM) $(udevrule_DATA)
|