From dcc8309d1bd50f6d3dc7ac2fd8a50cf97ba72eda Mon Sep 17 00:00:00 2001 From: Manpreet Singh Date: Tue, 21 Oct 2014 08:40:28 -0700 Subject: [PATCH] ENV/pod2man: fix for machines upgraded to Yosemite Yosemite is having the same issues as Homebrew/homebrew#24590 in the past on upgraded machine. Bump to pod2man5.18. Closes Homebrew/homebrew#33436. Signed-off-by: Mike McQuaid --- Library/ENV/4.3/pod2man | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/ENV/4.3/pod2man b/Library/ENV/4.3/pod2man index 72f91ed524..909def30eb 100755 --- a/Library/ENV/4.3/pod2man +++ b/Library/ENV/4.3/pod2man @@ -1,3 +1,3 @@ #!/bin/bash -POD2MAN=$(/usr/bin/which pod2man5.16 || /usr/bin/which pod2man5.12 || echo /usr/bin/pod2man) +POD2MAN=$(/usr/bin/which pod2man5.18 || /usr/bin/which pod2man5.16 || /usr/bin/which pod2man5.12 || echo /usr/bin/pod2man) exec $POD2MAN "$@"