diff options
| author | Misty De Meo | 2011-12-31 00:06:56 -0600 |
|---|---|---|
| committer | Misty De Meo | 2011-12-31 00:18:06 -0600 |
| commit | 7dcab06369967afefde93cddae2bc27f07a09ec6 (patch) | |
| tree | db304e6d13a1771ba9a66b8cff951ec7330d833f /Library | |
| parent | b02b8d1694e036c4a872203d1c147ae3044a6677 (diff) | |
| download | homebrew-7dcab06369967afefde93cddae2bc27f07a09ec6.tar.bz2 | |
graphviz: fix GraphViz.app => Graphviz.app
graphviz builds its application bundle as Graphviz.app; a typo was
preventing it from installing correctly on case-sensitive systems.
Fixes #9348.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/graphviz.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/graphviz.rb b/Library/Formula/graphviz.rb index 10625ebb1..1027fa540 100644 --- a/Library/Formula/graphviz.rb +++ b/Library/Formula/graphviz.rb @@ -37,11 +37,11 @@ class Graphviz < Formula system "./configure", *args system "make install" - # build GraphViz.app + # build Graphviz.app Dir.chdir "macosx" do system "xcodebuild", "-configuration", "Release", "SYMROOT=build", "PREFIX=#{prefix}", "ONLY_ACTIVE_ARCH=YES" end - prefix.install "macosx/build/Release/GraphViz.app" + prefix.install "macosx/build/Release/Graphviz.app" end def test @@ -58,7 +58,7 @@ class Graphviz < Formula end def caveats; <<-EOS - GraphViz.app was installed in: + Graphviz.app was installed in: #{prefix} To symlink into ~/Applications, you can do: |
