backported build fix from 2.1

This commit is contained in:
Roberto De Ioris
2015-04-13 06:53:19 +02:00
parent 14b0a512e4
commit 8942e832e9
+2 -2
View File
@@ -1,6 +1,6 @@
# uWSGI build system
uwsgi_version = '2.0.10'
uwsgi_version = '2.0.11'
import os
import re
@@ -768,7 +768,7 @@ class uConf(object):
if 'UWSGI_PROFILE_OVERRIDE' in os.environ:
for item in os.environ['UWSGI_PROFILE_OVERRIDE'].split(';'):
k,v = item.split('=', 2)
k,v = item.split('=', 1)
self.set(k, v)
if 'UWSGI_AS_LIB' in os.environ: