formula: don't emit standard args for cmake and go

This commit is contained in:
Jonathan Chang 2020-02-17 14:42:43 +11:00
parent d0f40eda16
commit 2c94fca110

View File

@ -1861,9 +1861,15 @@ class Formula
# remove "boring" arguments so that the important ones are more likely to # remove "boring" arguments so that the important ones are more likely to
# be shown considering that we trim long ohai lines to the terminal width # be shown considering that we trim long ohai lines to the terminal width
pretty_args = args.dup pretty_args = args.dup
if cmd == "./configure" && !verbose unless verbose
pretty_args.delete "--disable-dependency-tracking" case cmd
pretty_args.delete "--disable-debug" when "./configure"
pretty_args -= %w[--disable-dependency-tracking --disable-debug --disable-silent-rules]
when "cmake"
pretty_args -= std_cmake_args
when "go"
pretty_args -= std_go_args
end
end end
pretty_args.each_index do |i| pretty_args.each_index do |i|
pretty_args[i] = "import setuptools..." if pretty_args[i].to_s.start_with? "import setuptools" pretty_args[i] = "import setuptools..." if pretty_args[i].to_s.start_with? "import setuptools"