rst2man: convert which to command -v

Signed-off-by: Kayla Firestack <dev@kaylafire.me>
This commit is contained in:
Kayla Firestack 2021-10-19 14:28:14 -04:00
parent a77c35a1c4
commit f403ef61e7

View File

@ -66,9 +66,9 @@ else
INITRAMFS_DIR=/etc/initramfs-tools INITRAMFS_DIR=/etc/initramfs-tools
endif endif
RST2MAN:=$(shell which rst2man) RST2MAN:=$(shell command -v rst2man)
ifeq ($(RST2MAN),) ifeq ($(RST2MAN),)
RST2MAN:=$(shell which rst2man.py) RST2MAN:=$(shell command -v rst2man.py)
ifeq ($(RST2MAN),) ifeq ($(RST2MAN),)
@echo "WARNING: no rst2man found! Man page not generated." @echo "WARNING: no rst2man found! Man page not generated."
endif endif