diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-01-03 21:21:16 -0600 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-01-03 15:27:02 -0600 |
commit | 0dbdfc2218c801b973a34fc810e5bb1b4509dd3c (patch) | |
tree | d8c292e9db424dbb44b910371c38b13092d15061 /source4/script | |
parent | 6ed5fc0919d2f43ad28f9fff08e2a3c8f09bbecd (diff) | |
download | samba-0dbdfc2218c801b973a34fc810e5bb1b4509dd3c.tar.gz samba-0dbdfc2218c801b973a34fc810e5bb1b4509dd3c.tar.bz2 samba-0dbdfc2218c801b973a34fc810e5bb1b4509dd3c.zip |
r26657: pidl: Add basics for generating Python modules.
(This used to be commit f1960ca7c4d1b75d64192efdd446482c6bbebcd9)
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/build_idl.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh index ecf6657836..ea0cb78b0e 100755 --- a/source4/script/build_idl.sh +++ b/source4/script/build_idl.sh @@ -6,7 +6,7 @@ PIDL_EXTRA_ARGS="$*" [ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1 -PIDL="$PERL $srcdir/pidl/pidl --outputdir librpc/gen_ndr --header --ndr-parser --server --client --swig --ejs $PIDL_EXTRA_ARGS" +PIDL="$PERL $srcdir/pidl/pidl --outputdir librpc/gen_ndr --header --ndr-parser --server --client --swig --ejs --python $PIDL_EXTRA_ARGS" if [ x$FULLBUILD = xFULL ]; then echo Rebuilding all idl files in librpc/idl |