web_server: Don't build wsgi support as python module but rather as
authorJelmer Vernooij <jelmer@samba.org>
Wed, 16 Jun 2010 18:01:38 +0000 (20:01 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Fri, 18 Jun 2010 21:51:40 +0000 (23:51 +0200)
subsystem so we don't install it into /usr/lib.

source4/web_server/wscript_build

index b7ff4413fb23112544ccceba661ed38a185110ff..70648310729201878d5e6a2c3b597c342a171465 100644 (file)
@@ -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
                  )