diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 721cbe574e..87eb75537e 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -1392,6 +1392,11 @@ class Formula "#" end + # Standard parameters for configure builds. + def std_configure_args + ["--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--libdir=#{lib}"] + end + # Standard parameters for cargo builds. def std_cargo_args ["--locked", "--root", prefix, "--path", "."]