From caf7cac77838ff018ed1f2f4b0301759e5bafa70 Mon Sep 17 00:00:00 2001 From: Dominyk Tiller Date: Thu, 13 Nov 2014 17:55:16 +0000 Subject: 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 --- Library/Formula/fontforge.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Library') 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 -- cgit v1.2.3