From a210e9d768c0d0707e4410ba21c04151754ecf7d Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Wed, 6 Nov 2024 12:33:24 +0100 Subject: [PATCH] makefiles: flip condition With previous commit, in this case we need to flip condition, to make it working here as expected. --- man/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/Makefile.in b/man/Makefile.in index 182503534..4ca5070fa 100644 --- a/man/Makefile.in +++ b/man/Makefile.in @@ -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) -- 2.43.5