diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-02-21 01:16:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:10:49 -0500 |
commit | 7e400d38ecfdbf2b0ba744b182db14fe286da404 (patch) | |
tree | 60117d7f2c282e2959e6d199f96bc445871c42fb /source4/script | |
parent | e770d5696ee0265661fd6cc2fa24a24b19a0b889 (diff) | |
download | samba-7e400d38ecfdbf2b0ba744b182db14fe286da404.tar.gz samba-7e400d38ecfdbf2b0ba744b182db14fe286da404.tar.bz2 samba-7e400d38ecfdbf2b0ba744b182db14fe286da404.zip |
r5479: Add ODL input support.
The ODL module can convert an ODL structure to an IDL structure so that:
- The COM subsystem can use the ODL structure
- The DCE/RPC subsystem can use the IDL structure
(This used to be commit a339765d99c90c46f29e2bd71a6aa271febb096d)
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 aaa0b12af4..7b49721a5c 100755 --- a/source4/script/build_idl.sh +++ b/source4/script/build_idl.sh @@ -4,7 +4,7 @@ FULLBUILD=$1 [ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1 -PIDL="$PERL ./build/pidl/pidl.pl --output librpc/gen_ndr/ndr_ --parse --header --parser --server --client --swig" +PIDL="$PERL ./build/pidl/pidl.pl --output librpc/gen_ndr/ndr_ --parse --header --parser --server --client --swig --odl" if [ x$FULLBUILD = xFULL ]; then echo Rebuilding all idl files in librpc/idl |