diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gcc.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/gcc.rb b/Library/Formula/gcc.rb index 6b10ba4b7..3957fdfed 100644 --- a/Library/Formula/gcc.rb +++ b/Library/Formula/gcc.rb @@ -144,15 +144,15 @@ class Gcc < Formula if build.with? "profiled-build" # Takes longer to build, may bug out. Provided for those who want to # optimise all the way to 11. - system "make profiledbootstrap" + system "make", "profiledbootstrap" else - system "make bootstrap" + system "make", "bootstrap" end # At this point `make check` could be invoked to run the testsuite. The # deja-gnu and autogen formulae must be installed in order to do this. - system "make install" + system "make", "install" end # Handle conflicts between GCC formulae |
