aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJosh Tilles2013-12-24 15:37:59 -0500
committerJack Nagel2013-12-27 16:58:55 -0600
commit410121d8edfc8fd35cbf3739854cb69652c82ea1 (patch)
treed2cd631a048973a517e7e8b782c1dd9bc90296a6 /Library
parent7a3e9149e016672828fbf86a9ab881dd418234dd (diff)
downloadbrew-410121d8edfc8fd35cbf3739854cb69652c82ea1.tar.bz2
Replace template’s `j1` with `deparallelize`
Solely because I think `ENV.deparallelize` is *way* clearer than `ENV.j1`, at least to the uninitiated. Also, updating the template will reduce the number of `ENV.j1`s that persist because the Homebrew maintainers want clean histories of formulae. Ideally, this change should prevent any more cases from being introduced! Closes Homebrew/homebrew#25431. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/create.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/create.rb b/Library/Homebrew/cmd/create.rb
index daca31e8e..fa0fd86c9 100644
--- a/Library/Homebrew/cmd/create.rb
+++ b/Library/Homebrew/cmd/create.rb
@@ -137,7 +137,7 @@ class FormulaCreator
depends_on :x11 # if your formula requires any X11/XQuartz components
def install
- # ENV.j1 # if your formula's build system can't parallelize
+ # ENV.deparallelize # if your formula fails when building in parallel
<% if mode == :cmake %>
system "cmake", ".", *std_cmake_args