summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_pidl.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-07 15:17:46 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:26:42 +1000
commit39807fd091e8feffb5d6ec089409d36e35ef7f28 (patch)
tree75d0078a27e89b313c7e16e86ae25f1b2a7a7e65 /buildtools/wafsamba/samba_pidl.py
parentdd05b6512ab2d5c8fc2d0fe18fcd19b62fee6f01 (diff)
downloadsamba-39807fd091e8feffb5d6ec089409d36e35ef7f28.tar.gz
samba-39807fd091e8feffb5d6ec089409d36e35ef7f28.tar.bz2
samba-39807fd091e8feffb5d6ec089409d36e35ef7f28.zip
build: smarter list splitting
Diffstat (limited to 'buildtools/wafsamba/samba_pidl.py')
-rw-r--r--buildtools/wafsamba/samba_pidl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_pidl.py b/buildtools/wafsamba/samba_pidl.py
index a108e03991..42652b66d7 100644
--- a/buildtools/wafsamba/samba_pidl.py
+++ b/buildtools/wafsamba/samba_pidl.py
@@ -85,7 +85,7 @@ Build.BuildContext.SAMBA_PIDL_TDR = SAMBA_PIDL_TDR
#################################################################
# define a set of Samba PIDL targets
def SAMBA_PIDL_LIST(bld, name, source,options=''):
- for p in source.split():
+ for p in to_list(source):
bld.SAMBA_PIDL(name, p, options)
Build.BuildContext.SAMBA_PIDL_LIST = SAMBA_PIDL_LIST