Skip to content

Commit

Permalink
Fixes Pillow build (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed Jan 3, 2021
1 parent daf16cd commit 2ba28a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kivy_ios/recipes/pillow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_pil_env(self, arch):
build_env["ARCH"] = arch.arch
build_env["C_INCLUDE_PATH"] = join(arch.sysroot, "usr", "include")
build_env["LIBRARY_PATH"] = join(arch.sysroot, "usr", "lib")
build_env["CFLAGS"] = " ".join([
build_env["CFLAGS"] += " ".join([
"-I{}".format(join(self.ctx.dist_dir, "include", arch.arch, "freetype")) +
" -I{}".format(join(self.ctx.dist_dir, "include", arch.arch, "libjpeg")) +
" -arch {}".format(arch.arch)
Expand Down

0 comments on commit 2ba28a5

Please sign in to comment.