diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-28 14:16:12 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:12 +1000 |
commit | 29b1e8b70f3966c538929f4556c4a3b7ebb4a38d (patch) | |
tree | 0adf552648af3bc5f223c1c20212a315605ee08a /source4 | |
parent | 42c9380760de4e0ad3f69810b8d623b3a77cc692 (diff) | |
download | samba-29b1e8b70f3966c538929f4556c4a3b7ebb4a38d.tar.gz samba-29b1e8b70f3966c538929f4556c4a3b7ebb4a38d.tar.bz2 samba-29b1e8b70f3966c538929f4556c4a3b7ebb4a38d.zip |
s4-waf: don't auto-include bundled library headers
If we are going to use the system versions of these libraries then
we should not force the use of the non-system headers
Diffstat (limited to 'source4')
-rw-r--r-- | source4/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/wscript b/source4/wscript index 1320ceab57..b7b66c6f10 100644 --- a/source4/wscript +++ b/source4/wscript @@ -40,7 +40,7 @@ def configure(conf): # set a lower limit on recursing in waf preprocessor conf.env.preprocessor_recursion_limit = 10 - conf.ADD_EXTRA_INCLUDES('#source4 #lib #source4/lib #source4/include #lib/replace #lib/talloc #lib/tevent') + conf.ADD_EXTRA_INCLUDES('#source4 #lib #source4/lib #source4/include') conf.sub_config('../lib/replace') |