summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-03-03 17:41:45 +1100
committerAndrew Tridgell <tridge@samba.org>2011-03-15 12:22:20 +1100
commitb4d618cc6ff72e2cb097da92f97018e85af286b6 (patch)
tree31a2403ec9081a7ffcc2af4227be078de9e17748 /buildtools
parentf303db5bfd627b8764f031671d95d69ad271674c (diff)
downloadsamba-b4d618cc6ff72e2cb097da92f97018e85af286b6.tar.gz
samba-b4d618cc6ff72e2cb097da92f97018e85af286b6.tar.bz2
samba-b4d618cc6ff72e2cb097da92f97018e85af286b6.zip
waf: build headers in separate 'headers' build group
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/samba_headers.py2
-rw-r--r--buildtools/wafsamba/wafsamba.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_headers.py b/buildtools/wafsamba/samba_headers.py
index cca8bbeeed..95d1e6fb55 100644
--- a/buildtools/wafsamba/samba_headers.py
+++ b/buildtools/wafsamba/samba_headers.py
@@ -137,7 +137,7 @@ def PUBLIC_HEADERS(bld, public_headers, header_path=None, public_headers_install
header_map[src_path] = target_path
t = bld.SAMBA_GENERATOR('HEADER_%s/%s/%s' % (relpath2, inst_path, inst_name),
- group='prototypes',
+ group='headers',
rule=create_public_header,
source=h_name,
target=target)
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py
index bf0c1b4548..2a1c82a307 100644
--- a/buildtools/wafsamba/wafsamba.py
+++ b/buildtools/wafsamba/wafsamba.py
@@ -593,6 +593,7 @@ def SETUP_BUILD_GROUPS(bld):
bld.add_group('build_compilers')
bld.add_group('build_source')
bld.add_group('prototypes')
+ bld.add_group('headers')
bld.add_group('main')
bld.add_group('symbolcheck')
bld.add_group('libraries')