From ccf40b91a67127084ee81e875ee5b77b3b0f019d Mon Sep 17 00:00:00 2001 From: Gregor Jasny Date: Thu, 17 Oct 2013 21:25:09 +0200 Subject: [PATCH 1/1] Make root tool configurable On Macports one need to run ronn-1.9 instead of ronn. Therefore make ronn tool configurable. one can now run make RONN=ronn-1.9 to execute ronn-1.9 instead of the default ronn. Signed-off-by: Gregor Jasny --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cb112c7..18ea7cd 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ PREFIX=/usr +RONN ?= ronn self=vcsh manpages=$(self).1 @@ -20,7 +21,7 @@ install: all manpages: $(manpages) $(self).1: doc/$(self).1.ronn - ronn < doc/$(self).1.ronn > $(self).1 + $(RONN) < doc/$(self).1.ronn > $(self).1 || rm $(self).1 clean: rm -rf $(self).1 -- 2.39.2