diff options
| author | Mike McQuaid | 2014-05-15 02:09:26 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-05-16 17:41:12 +0100 |
| commit | df2eef590248d0e03d3515d0bc418423c0a2e506 (patch) | |
| tree | 38971dba8a1f94d7837237b1a3b834a665c47303 /Library/Formula | |
| parent | 387c92e63b9db59b0a9958c4f1500be75c0e4d0c (diff) | |
| download | homebrew-df2eef590248d0e03d3515d0bc418423c0a2e506.tar.bz2 | |
gcc: fix system argument separation.
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 |
