Skip to content

Commit

Permalink
man/Makefile bugfix: err if !PANDOCOK
Browse files Browse the repository at this point in the history
  • Loading branch information
rd235 committed Oct 15, 2024
1 parent 674b0d4 commit 5df9b73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion man/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ PANDOCMINVER=3.1.7
ifdef PANDOCOK
PANDOCVER := $(shell ${PANDOC} -v | head -1 | cut -d ' ' -f 2)
PANDOCVEROK := $(shell printf '%s\n' ${PANDOCMINVER} ${PANDOCVER} | sort -C -V; echo $$?)
none:
endif

none:

% : %.md
ifdef PANDOCOK
ifeq (${PANDOCVEROK}, 1)
Expand Down

0 comments on commit 5df9b73

Please sign in to comment.