Skip to content

Commit 898bd41

Browse files
committed
Fix wrapping include directory path with quotes
1 parent f25f437 commit 898bd41

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unlreleased
44

5+
## v0.13.11
6+
- fixed: Wrap include directory with string so it works with the compiler.
7+
58
## v0.13.10
69
- added: Ability to specify `:load_extensions` for custom sqlite extensions.
710
- changed: Updated sqlite3 to `3.41.2`

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ ifneq ($(EXQLITE_SYSTEM_CFLAGS),)
117117
endif
118118

119119
# Set Erlang-specific compile flags
120-
ERL_CFLAGS ?= -I$(ERL_EI_INCLUDE_DIR)
120+
ERL_CFLAGS ?= -I"$(ERL_EI_INCLUDE_DIR)"
121121

122122
ifneq ($(STATIC_ERLANG_NIF),)
123123
CFLAGS += -DSTATIC_ERLANG_NIF=1

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Exqlite.MixProject do
22
use Mix.Project
33

4-
@version "0.13.10"
4+
@version "0.13.11"
55
@sqlite_version "3.41.2"
66

77
def project do

0 commit comments

Comments
 (0)