diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-21 16:21:30 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-21 16:21:30 +1000 |
commit | 1d5aee6b91004d71609b3203c919ef39888c86cc (patch) | |
tree | 87ae2ababc0c8e000f8893a9492b5c03dfe2c480 /source4/wscript | |
parent | 06fa4c8ebcd5a3e4ef5c9d9a3b3d9516d3b94ce7 (diff) | |
download | samba-1d5aee6b91004d71609b3203c919ef39888c86cc.tar.gz samba-1d5aee6b91004d71609b3203c919ef39888c86cc.tar.bz2 samba-1d5aee6b91004d71609b3203c919ef39888c86cc.zip |
s4-waf: python devel headers are mandatory for the source4 build
Diffstat (limited to 'source4/wscript')
-rw-r--r-- | source4/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/wscript b/source4/wscript index 13682a1699..4f8042db50 100644 --- a/source4/wscript +++ b/source4/wscript @@ -58,7 +58,7 @@ def configure(conf): # enable tool to build python extensions conf.check_tool('python') conf.check_python_version((2,4,2)) - conf.check_python_headers() + conf.check_python_headers(mandatory=True) conf.RECURSE('dynconfig') conf.RECURSE('scripting/python') |