1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

build: improve the wscript generator

This commit is contained in:
Andrew Tridgell 2010-02-23 14:59:47 +11:00
parent 9e79e14e14
commit 7e01efa80f
2 changed files with 9 additions and 0 deletions

View File

@ -1,4 +1,5 @@
source4/main.mk
source4/lib/basic.mk
pidl/config.mk
nsswitch/config.mk
nsswitch/libwbclient/config.mk

View File

@ -34,6 +34,14 @@ sub strlist($)
$s =~ s/\$\(param_OBJ_FILES\)/..\/pyparam.c/g;
$s =~ s/\$\(libclisrcdir\)\///g;
# this one doesn't exist?
$s =~ s/LDAP_ENCODE//g;
# these need to use the library names
$s =~ s/LIBLDB/ldb/g;
$s =~ s/LIBTALLOC/talloc/g;
$s =~ s/LIBTEVENT/tevent/g;
return trim(join(' ', split(/\s+/, $s)));
}