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:
parent
22a02b1e11
commit
d2842337ee
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue