Skip to content

Commit

Permalink
fontforge: application name fixing
Browse files Browse the repository at this point in the history
The name of the app bundle is case-sensitive, and breaks without both
of the F’s capitalised. This fixes that.

Closes Homebrew/legacy-homebrew#34163.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
  • Loading branch information
DomT4 authored and jacknagel committed Nov 14, 2014
1 parent f27583c commit b11386b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Formula/fontforge.rb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ def install
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
Expand Down

0 comments on commit b11386b

Please sign in to comment.