1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

makefiles: flip condition

With previous commit, in this case we need to flip condition,
to make it working here as expected.
This commit is contained in:
Zdenek Kabelac 2024-11-06 12:33:24 +01:00
parent 0fc7266353
commit a210e9d768

View File

@ -49,7 +49,7 @@ MAN8DM=dmsetup.8 dmstats.8
MAN8CLUSTER=
MAN_ALL_GOALS := distclean all_man install_all_man
ifeq (,$(filter $(MAN_ALL_GOALS),$(MAKECMDGOALS)))
ifneq (,$(filter $(MAN_ALL_GOALS),$(MAKECMDGOALS)))
MAN7 += lvmcache.7 lvmthin.7 lvmvdo.7
MAN8+=$(FSADMMAN) $(LVMPOLLDMAN) $(LVMLOCKDMAN) $(LVMDBUSDMAN) $(LVMIMPORTVDOMAN)
MAN8DM+=$(BLKDEACTIVATEMAN) $(DMEVENTDMAN) $(DMFILEMAPDMAN)