diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-07 10:13:35 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:40 +1000 |
commit | 8c4e709818bb9fb20d7b97a3831862328cd9d939 (patch) | |
tree | 95d99337c1e8a79d1ff436b29910d396a6ac486d /buildtools | |
parent | 7ed65d2e126161f269ea823d2fa02e79b779fc63 (diff) | |
download | samba-8c4e709818bb9fb20d7b97a3831862328cd9d939.tar.gz samba-8c4e709818bb9fb20d7b97a3831862328cd9d939.tar.bz2 samba-8c4e709818bb9fb20d7b97a3831862328cd9d939.zip |
build: use shell for TDR rule, as -- confuses the build rule
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_pidl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_pidl.py b/buildtools/wafsamba/samba_pidl.py index bea97acf03..a108e03991 100644 --- a/buildtools/wafsamba/samba_pidl.py +++ b/buildtools/wafsamba/samba_pidl.py @@ -70,7 +70,7 @@ def SAMBA_PIDL_TDR(bld, pname, source, options=''): t = bld(rule='${PIDL} ${PIDL_BUILD_TYPES} ${OPTIONS} --outputdir ${TGT[0].parent.abspath(env)} -- ${SRC[0].abspath(env)}', ext_out = '.c', before = 'cc', - shell = False, + shell = True, source=source, target = out_files, name=name) |