diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2015-07-30 19:54:53 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2015-07-30 19:54:53 +0000 |
commit | fda492aae56446f2f306c3959faec288b89a695d (patch) | |
tree | 9f0b289938d39842732ec5624658ab4f08856426 /security/p5-GSSAPI | |
parent | 614f87ae45005b5deffaaea0519b314690a58736 (diff) | |
download | ports-fda492aae56446f2f306c3959faec288b89a695d.tar.gz ports-fda492aae56446f2f306c3959faec288b89a695d.zip |
Notes
Diffstat (limited to 'security/p5-GSSAPI')
-rw-r--r-- | security/p5-GSSAPI/files/patch-Makefile.PL | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/security/p5-GSSAPI/files/patch-Makefile.PL b/security/p5-GSSAPI/files/patch-Makefile.PL index e9664d0bc381..fa911325b98e 100644 --- a/security/p5-GSSAPI/files/patch-Makefile.PL +++ b/security/p5-GSSAPI/files/patch-Makefile.PL @@ -1,12 +1,11 @@ --- Makefile.PL.orig 2010-04-24 12:37:38 UTC +++ Makefile.PL -@@ -12,8 +12,7 @@ my @whichcand = qw(/bin/which /usr/bin/w - - my @KRB5_CONFIG_TRIES = ( - -- '/usr/kerberos/bin/krb5-config', # for use with CentOS, as suggested by Mark Hedges in https://rt.cpan.org/Ticket/Display.html?id=48732 -- '/usr/bin/krb5-config', # always worth a try ;-) -+ '%%KRB5CONF%%', # for use with FreeBSD - - ); - +@@ -210,7 +210,7 @@ sub find_krb5config_cmd { + my $r = undef; + unless ($expl_path) { + #my $whichcmd = find_which_command() || die 'cannot locate which command'; +- $r = `which krb5-config 2>/dev/null`; ++ $r = '%%KRB5CONF%%'; + + chomp $r; + unless ( $r ) { |