From 938250790967dffa617446ab2e7b266b06033495 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 16 Jun 2010 20:01:38 +0200 Subject: web_server: Don't build wsgi support as python module but rather as subsystem so we don't install it into /usr/lib. --- source4/web_server/wscript_build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source4/web_server') diff --git a/source4/web_server/wscript_build b/source4/web_server/wscript_build index b7ff4413fb..7064831072 100644 --- a/source4/web_server/wscript_build +++ b/source4/web_server/wscript_build @@ -1,9 +1,10 @@ #!/usr/bin/env python -bld.SAMBA_PYTHON('WEB_WSGI', +bld.SAMBA_SUBSYSTEM('WEB_WSGI', source='wsgi.c', - deps='talloc LIBTSOCKET' + deps='talloc LIBTSOCKET', + needs_python=True ) -- cgit