treewide: Make explicit that 'dev' output of sqlite is used

This commit is contained in:
Tuomas Tynkkynen 2016-08-23 03:36:14 +03:00
parent f46a48384a
commit f6640842fe
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ index b7e2fbf..5ff23db 100644
ifndef CROSSHOST ifndef CROSSHOST
- SQLITE_INCLUDE_DIR := /usr/include - SQLITE_INCLUDE_DIR := /usr/include
+ SQLITE_INCLUDE_DIR := ${sqlite}/include + SQLITE_INCLUDE_DIR := ${sqlite.dev}/include
else else
# This is totally wrong, works only with some old-style setups, and # This is totally wrong, works only with some old-style setups, and
# on some architectures of Debian/new FHS multiarch -- excluding, for # on some architectures of Debian/new FHS multiarch -- excluding, for

View file

@ -48,7 +48,7 @@ in stdenv.mkDerivation rec {
inherit src; inherit src;
configureFlags = [ "--enable-all" "--with-sqlite3=${sqlite}" ]; configureFlags = [ "--enable-all" "--with-sqlite3=${sqlite.dev}" ];
buildInputs = [ git erlang openssl expat libyaml sqlite pam zlib elixir ]; buildInputs = [ git erlang openssl expat libyaml sqlite pam zlib elixir ];