diff options
-rw-r--r-- | Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -66,14 +66,12 @@ else INITRAMFS_DIR=/etc/initramfs-tools endif -STATUS:=$(shell rst2man -V 2>/dev/null; echo $$?) -ifeq ($(STATUS),0) - RST2MAN=rst2man -endif - -STATUS:=$(shell rst2man.py -V 2>/dev/null; echo $$?) -ifeq ($(STATUS),0) - RST2MAN=rst2man.py +RST2MAN:=$(shell which rst2man) +ifeq ($(RST2MAN),) + RST2MAN:=$(shell which rst2man.py) + ifeq ($(RST2MAN),) + @echo "WARNING: no rst2man found! Man page not generated." + endif endif .PHONY: all |