From b4d618cc6ff72e2cb097da92f97018e85af286b6 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 3 Mar 2011 17:41:45 +1100 Subject: waf: build headers in separate 'headers' build group --- buildtools/wafsamba/samba_headers.py | 2 +- buildtools/wafsamba/wafsamba.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'buildtools') 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') -- cgit