diff options
author | Günther Deschner <gd@samba.org> | 2011-02-18 15:33:25 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-02-18 15:34:27 +0100 |
commit | a2f4a17b5e005afa1a8b15921e81c42cda6bcec0 (patch) | |
tree | acf8d4d8b47bdc9c349163b4ec95c0644a18a3fa /buildtools | |
parent | 1ad8e5229f618fc04af371ba52b81f2e7e1f88f5 (diff) | |
download | samba-a2f4a17b5e005afa1a8b15921e81c42cda6bcec0.tar.gz |
s3-waf: fix popt support.
Guenther
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba3.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buildtools/wafsamba/samba3.py b/buildtools/wafsamba/samba3.py index 6759450f605..9344e55e87e 100644 --- a/buildtools/wafsamba/samba3.py +++ b/buildtools/wafsamba/samba3.py @@ -72,6 +72,9 @@ def s3_fix_kwargs(bld, kwargs): if not bld.CONFIG_SET('USING_SYSTEM_TALLOC'): extra_includes += [ '../lib/talloc' ] + if not bld.CONFIG_SET('USING_SYSTEM_POPT'): + extra_includes += [ '../lib/popt' ] + # s3 builds assume that they will have a bunch of extra include paths includes = [] for d in extra_includes: |