aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/fluid-synth.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/fluid-synth.rb b/Library/Formula/fluid-synth.rb
index 6ef904bc3..f12e1f165 100644
--- a/Library/Formula/fluid-synth.rb
+++ b/Library/Formula/fluid-synth.rb
@@ -17,10 +17,10 @@ class FluidSynth < Formula
end
def install
- Dir.mkdir 'macbuild'
- Dir.chdir 'macbuild'
- system "cmake #{std_cmake_parameters} -Denable-framework=OFF -DLIB_SUFFIX= .."
- system "make install"
+ mkdir 'build' do
+ system "cmake #{std_cmake_parameters} -Denable-framework=OFF -DLIB_SUFFIX= .."
+ system "make install"
+ end
end
end