]> git.madduck.net Git - code/vcsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Make root tool configurable
authorGregor Jasny <gjasny@googlemail.com>
Thu, 17 Oct 2013 19:25:09 +0000 (21:25 +0200)
committerGregor Jasny <gjasny@googlemail.com>
Thu, 17 Oct 2013 19:25:09 +0000 (21:25 +0200)
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 <gjasny@googlemail.com>
Makefile

index cb112c72b619dec628d167f17f75630a99bb34fd..18ea7cd71615aba3896ce9707af428458ae12843 100644 (file)
--- 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