diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-02-09 15:56:20 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-02-18 16:46:41 +1100 |
commit | c8b2b109760b366bee6dcf7c6c306936d271f508 (patch) | |
tree | f09769354164d60db9e0b237c9a8c4e0028aef2f /source3/libgpo/gpext/wscript_build | |
parent | e92922308b5636d1b23fa44f1f8aa50413d48d77 (diff) | |
download | samba-c8b2b109760b366bee6dcf7c6c306936d271f508.tar.gz samba-c8b2b109760b366bee6dcf7c6c306936d271f508.tar.xz samba-c8b2b109760b366bee6dcf7c6c306936d271f508.zip |
s3-waf: use SAMBA3_*() build rules in source3/build
this brings the s3 waf build much closer to the proposed s3build top
level build, using the same bld.SAMBA3_*() rules
There are a few renames of subsystems in here, with a 3 suffix where
it would create a conflict.
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/libgpo/gpext/wscript_build')
-rw-r--r-- | source3/libgpo/gpext/wscript_build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/libgpo/gpext/wscript_build b/source3/libgpo/gpext/wscript_build index 1f6e8df0fe..bfdb4d0bf6 100644 --- a/source3/libgpo/gpext/wscript_build +++ b/source3/libgpo/gpext/wscript_build @@ -6,11 +6,11 @@ GPEXT_SECURITY_SRC = 'security.c' GPEXT_SRC = '''../../../libgpo/gpext/gpext.c''' -bld.SAMBA_SUBSYSTEM('gpext', +bld.SAMBA3_SUBSYSTEM('gpext', source=GPEXT_SRC, vars=locals()) -bld.SAMBA_MODULE('gpext_registry', +bld.SAMBA3_MODULE('gpext_registry', subsystem='gpext', source=GPEXT_REGISTRY_SRC, deps='NDR_PREG', @@ -18,14 +18,14 @@ bld.SAMBA_MODULE('gpext_registry', internal_module=bld.SAMBA3_IS_STATIC_MODULE('gpext_registry'), enabled=bld.SAMBA3_IS_ENABLED_MODULE('gpext_registry')) -bld.SAMBA_MODULE('gpext_scripts', +bld.SAMBA3_MODULE('gpext_scripts', subsystem='gpext', source=GPEXT_SCRIPTS_SRC, init_function='', internal_module=bld.SAMBA3_IS_STATIC_MODULE('gpext_scripts'), enabled=bld.SAMBA3_IS_ENABLED_MODULE('gpext_scripts')) -bld.SAMBA_MODULE('gpext_security', +bld.SAMBA3_MODULE('gpext_security', subsystem='gpext', source=GPEXT_SECURITY_SRC, init_function='', |