Add force to gzip commands

Without force make shows errors when .gz
files already exist.

Signed-off-by: Daniel Madej <daniel.madej@huawei.com>
This commit is contained in:
Daniel Madej 2025-02-28 12:25:09 +01:00
parent 2cc49a1cd0
commit d562602556
2 changed files with 3 additions and 3 deletions

View File

@ -158,7 +158,7 @@ endif
-include $(addprefix $(OBJDIR),$(OBJS:.o=.d))
manpage:
gzip -k $(TARGET).8
gzip -k -f $(TARGET).8
clean:
@echo " CLEAN "

View File

@ -24,8 +24,8 @@ endif
all: manpage
manpage:
gzip -k opencas.conf.5
gzip -k casctl.8
gzip -k -f opencas.conf.5
gzip -k -f casctl.8
install: install_files
ifeq (, $(PYTHON3))