krb5: add --without-system-verto flag (#22328)

If libverto is installed on the system, krb5 will try to use it
but superenv will prevent linking to it, making the build fail.
Using the --without-system-verto flag forces krb5 to use it's
builtin libverto.
This commit is contained in:
Michka Popoff 2018-01-02 07:00:30 +01:00 committed by ilovezfs
parent 22a02b1e11
commit d2842337ee

View file

@ -20,7 +20,8 @@ class Krb5 < Formula
"--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
"--prefix=#{prefix}",
"--without-system-verto"
system "make"
system "make", "install"
end