The install target in the pp_alua Makefile should reference the program, not the build target. Otherwise the program gets recompiled on each install. Signed-off-by: Hannes Reinecke <hare@xxxxxxx> --- path_priority/pp_alua/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/path_priority/pp_alua/Makefile b/path_priority/pp_alua/Makefile index 983ffe3..6f356a1 100644 --- a/path_priority/pp_alua/Makefile +++ b/path_priority/pp_alua/Makefile @@ -35,7 +35,7 @@ glibc: $(OBJS) klibc: $(OBJS) $(CC) -static -o $(EXEC) $(OBJS) -install: $(BUILD) $(EXEC).8.gz +install: $(EXEC) $(EXEC).8.gz $(INSTALL) -s -m 755 $(EXEC) $(DESTDIR)$(bindir)/$(EXEC) $(INSTALL) -m 644 $(EXEC).8.gz $(DESTDIR)$(mandir)/$(EXEC).8.gz -- 1.4.3.4 -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel