From 65b97800c1e98c462532412569c975b0862b8023 Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Mon, 6 May 2019 13:35:38 +0200 Subject: [PATCH] Fix the man build --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 275e1fd..59e01ce 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ MAN_SRC = acmed.8 \ tacd.8 MAN_FILES = $(foreach name,$(MAN_SRC),$(MAN_DST_DIR)/$(name).gz) -all: $(EXE_FILES) $(MAN_NAME) +all: $(EXE_FILES) man man: $(MAN_DST_DIR) $(MAN_FILES) @@ -29,7 +29,7 @@ $(MAN_DST_DIR): @mkdir -p $(MAN_DST_DIR) $(MAN_DST_DIR)/%.gz: $(MAN_SRC_DIR)/% - gzip <$< >$@ + gzip <"$<" >"$@" install: install -D --mode=0755 $(TARGET_DIR)/acmed $(DESTDIR)$(BINDIR)/acmed