summaryrefslogtreecommitdiff
path: root/buildtools/mktowscript/mktowscript.pl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-02-23 14:59:47 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:26:36 +1000
commit7e01efa80fc6262bf5558b213fa572f4253316dc (patch)
tree87e33c40e2717892aa6451b23ec9f1958501a941 /buildtools/mktowscript/mktowscript.pl
parent9e79e14e1434dc2bf77eba7bfc79d816cd43cd11 (diff)
downloadsamba-7e01efa80fc6262bf5558b213fa572f4253316dc.tar.gz
samba-7e01efa80fc6262bf5558b213fa572f4253316dc.tar.bz2
samba-7e01efa80fc6262bf5558b213fa572f4253316dc.zip
build: improve the wscript generator
Diffstat (limited to 'buildtools/mktowscript/mktowscript.pl')
-rwxr-xr-xbuildtools/mktowscript/mktowscript.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/buildtools/mktowscript/mktowscript.pl b/buildtools/mktowscript/mktowscript.pl
index 18c8779055..5dc4e1b944 100755
--- a/buildtools/mktowscript/mktowscript.pl
+++ b/buildtools/mktowscript/mktowscript.pl
@@ -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)));
}