From da19c15c101eb3ebecf5b01f9185dc6a92ae6f23 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Wed, 25 Sep 2019 13:59:00 +0200 Subject: [PATCH] create: simplify conditional in template --- Library/Homebrew/formula_creator.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula_creator.rb b/Library/Homebrew/formula_creator.rb index 9ff63333fc..eeb4fdd693 100644 --- a/Library/Homebrew/formula_creator.rb +++ b/Library/Homebrew/formula_creator.rb @@ -150,7 +150,7 @@ module Homebrew "--prefix=\#{prefix}" # system "cmake", ".", *std_cmake_args <% end %> - <% if mode != :meson and mode != :go and mode != :python %> + <% if mode == :autotools or mode == :cmake %> system "make", "install" # if this fails, try separate make/make install steps <% end %> end