Skip to content

Commit

Permalink
[build-tools] Fix $(JI_MONO_FRAMEWORK_PATH) for OS X. (#29)
Browse files Browse the repository at this point in the history
Commit be86e93 broke the OS X build, as $(JI_MONO_FRAMEWORK_PATH) was
set to a location which didn't exist.

Fix the $(JI_MONO_FRAMEWORK_PATH) value on OS X to a valid location.
  • Loading branch information
jonpryor committed May 3, 2016
1 parent 7d59715 commit d547120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-tools/scripts/mono.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

ifeq ($(OS),Darwin)
JI_MONO_FRAMEWORK_PATH = /Library/Frameworks/Mono.framework/monosgen-2.0.1.dylib
JI_MONO_FRAMEWORK_PATH = /Library/Frameworks/Mono.framework/Libraries/libmonosgen-2.0.1.dylib
JI_MONO_INCLUDE_PATHS = /Library/Frameworks/Mono.framework/Headers/mono-2.0
JI_MONO_LIBS = -L /Library/Frameworks/Mono.framework/Libraries -lmonosgen-2.0
endif
Expand Down

0 comments on commit d547120

Please sign in to comment.