Build sqlite without tcl support, as it's causes an error on installation when tcl is installed into the systems /usr/lib/ and install isn't running as root.
This could be resolves by adding tcl as a dependency however it's not needed for Python's sqlite integration.
Linux distributions (Debian & Arch at least) split this off into a separate package (which Python doesn't depend on), so there is no need for Blender to include sqlite's tcl integration either.
Currently make deps fails on my system, one of the errors I'm running into is sqlite fails to install.
The problem is that it's trying to install tcl language support into my system path.
/usr/bin/install: cannot change permissions of ‘/usr/lib/tcl8.6/sqlite3’: No such file or directory make[4]: *** [Makefile:1350: tcl_install] Error 1
While the "correct" fix is to build our own local TCL, I can only assume other developers didn't already run into this because they don't have TCL installed.