Renamed python.sqlite getConfig entry to python.sqliteSupport (to make it the same style as the other 3 options nearby)

svn path=/nixpkgs/trunk/; revision=12793
This commit is contained in:
Michael Raskin 2008-09-04 04:22:20 +00:00
parent 0a096340ad
commit fd0b020c74

View File

@ -2005,7 +2005,7 @@ let
python25 = python25base.meta.function {
db4 = if getConfig ["python" "db4Support"] false then db4 else null;
sqlite = if getConfig ["python" "sqlite"] false then sqlite else null;
sqlite = if getConfig ["python" "sqliteSupport"] false then sqlite else null;
readline = if getConfig ["python" "readlineSupport"] false then readline else null;
openssl = if getConfig ["python" "opensslSupport"] false then openssl else null;
};