Skip to content

Commit

Permalink
Use shared utf8proc library when USE_SYSTEM_UTF8PROC=1
Browse files Browse the repository at this point in the history
Distribution policies strongly discourage statically linking
to libraries in packages. We thus need to allow using the
dynamic library when building packages.
  • Loading branch information
nalimilan committed Jan 26, 2014
1 parent 9bd4618 commit 47a70cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ endif
endif

ifeq ($(USE_SYSTEM_UTF8PROC), 1)
LIBUTF8PROC = /usr/lib/libutf8proc.a
LIBUTF8PROC = -lutf8proc
else
LIBUTF8PROC = $(BUILD)/$(JL_LIBDIR)/libutf8proc.a
endif
Expand Down

0 comments on commit 47a70cc

Please sign in to comment.