Commit 9b5a662d by Dane Springmeyer

Merge pull request #346 from coolaj86/patch-1

fix copy paste typo in CPPFLAGS
parents 089198dc 51b37825
...@@ -142,7 +142,7 @@ To run node-sqlite3 against sqlcipher you need to compile from source by passing ...@@ -142,7 +142,7 @@ To run node-sqlite3 against sqlcipher you need to compile from source by passing
If your sqlcipher is installed in a custom location, say if you installed it with homebrew on OS X you also need to do: If your sqlcipher is installed in a custom location, say if you installed it with homebrew on OS X you also need to do:
export LDFLAGS="-L`brew --prefix`/opt/sqlcipher/lib" export LDFLAGS="-L`brew --prefix`/opt/sqlcipher/lib"
export CPPFLAGS="-I/`brew --prefix`opt/sqlcipher/include" export CPPFLAGS="-I`brew --prefix`/opt/sqlcipher/include"
npm install sqlite3 --build-from-source --sqlite_libname=sqlcipher --sqlite=`brew --prefix` npm install sqlite3 --build-from-source --sqlite_libname=sqlcipher --sqlite=`brew --prefix`
# Testing # Testing
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment