aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDominyk Tiller2014-11-13 17:55:16 +0000
committerJack Nagel2014-11-13 20:52:34 -0600
commitcaf7cac77838ff018ed1f2f4b0301759e5bafa70 (patch)
tree8b2d46f28c5b394dbf6e0b8dc0ea569814d94123 /Library/Formula
parent76194adbf9f709ce60ce5874b5b31784b170637a (diff)
downloadhomebrew-caf7cac77838ff018ed1f2f4b0301759e5bafa70.tar.bz2
fontforge: application name fixing
The name of the app bundle is case-sensitive, and breaks without both of the F’s capitalised. This fixes that. Closes #34163. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fontforge.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/fontforge.rb b/Library/Formula/fontforge.rb
index d7518f4a4..ad60c2d0d 100644
--- a/Library/Formula/fontforge.rb
+++ b/Library/Formula/fontforge.rb
@@ -91,7 +91,8 @@ class Fontforge < Formula
system "make", "install"
# Link this to enable symlinking into /Applications with brew linkapps.
- ln_s "#{share}/fontforge/osx/Fontforge.app", "#{prefix}"
+ # The name is case-sensitive. It breaks without both F's capitalised.
+ ln_s "#{share}/fontforge/osx/FontForge.app", prefix
end
test do