Skip to content

Commit

Permalink
kamcmd: Makefile - updated the msg target to print pkg-config detections
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Mar 18, 2020
1 parent 0e6e05f commit 331ffea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion utils/kamcmd/Makefile
Expand Up @@ -137,7 +137,11 @@ $(NAME).o:
.PHONY: msg
msg:
@if [ "$(use_readline)" = "1" ]; then \
echo; echo "readline detected ($(readline_path)):"; \
if [ "$(BUILDER)" = "" ]; then \
echo; echo "readline detected ($(readline_path)):"; \
else \
echo; echo "readline detected via pkg-config"; \
fi; \
echo "command completion enabled"; echo ; \
else \
echo ; \
Expand Down

0 comments on commit 331ffea

Please sign in to comment.