diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-24 11:26:09 -0700 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-26 10:17:18 -0700 |
commit | a74e8be6d1448f121181e6d7cca3841891321a12 (patch) | |
tree | 652b0f2e54a666ce94e94db76e460f18673e4e98 /source4/kdc | |
parent | e4d9e974da730ef7a5ac5a33797652720d40ccb9 (diff) | |
download | samba-a74e8be6d1448f121181e6d7cca3841891321a12.tar.gz samba-a74e8be6d1448f121181e6d7cca3841891321a12.tar.bz2 samba-a74e8be6d1448f121181e6d7cca3841891321a12.zip |
waf: Stop automaticaly changing dashes to underscores in library names.
Diffstat (limited to 'source4/kdc')
-rw-r--r-- | source4/kdc/wscript_build | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/source4/kdc/wscript_build b/source4/kdc/wscript_build index 89faffd49a..1433922268 100644 --- a/source4/kdc/wscript_build +++ b/source4/kdc/wscript_build @@ -11,7 +11,7 @@ bld.SAMBA_MODULE('KDC', bld.SAMBA_SUBSYSTEM('HDB_SAMBA4', source='hdb-samba4.c', - deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb db_glue samba-hostconfig com_err', + deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb db-glue samba-hostconfig com_err', includes='../heimdal/kdc', local_include=False ) @@ -33,7 +33,7 @@ bld.SAMBA_SUBSYSTEM('PAC_GLUE', ) -bld.SAMBA_LIBRARY('db_glue', +bld.SAMBA_LIBRARY('db-glue', source='db-glue.c', local_include=False, deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb samba-hostconfig com_err', @@ -44,14 +44,14 @@ bld.SAMBA_LIBRARY('db_glue', bld.SAMBA_SUBSYSTEM('MIT_SAMBA', source='mit_samba.c', local_include=False, - deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb db_glue PAC_GLUE samba-hostconfig com_err' + deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb db-glue PAC_GLUE samba-hostconfig com_err' ) -bld.SAMBA_LIBRARY('mit_samba', - source='', - deps='MIT_SAMBA', - external_library=True, - realname='mit_samba.so' - ) +bld.SAMBA_LIBRARY('mit-samba', + source='', + deps='MIT_SAMBA', + external_library=True, + realname='mit_samba.so' + ) |