diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-09-09 10:59:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:00 -0500 |
commit | 8b5a9537250e2d55a782c40f51fbedafa3d6bee7 (patch) | |
tree | 9b6476bb9c29a64712daafba5da84a2363861cf1 /source4/script | |
parent | 79f476a1126cc1426eb7f42d9d2b1f63051e69b1 (diff) | |
download | samba-8b5a9537250e2d55a782c40f51fbedafa3d6bee7.tar.gz samba-8b5a9537250e2d55a782c40f51fbedafa3d6bee7.tar.bz2 samba-8b5a9537250e2d55a782c40f51fbedafa3d6bee7.zip |
r10111: Make pidl by default assume the input file is an IDL file rather
then a .pidl file.
(This used to be commit d8a31d3048a6421a3d49d3c121bc86d748838b3a)
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 a9bc752857..668d5df975 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 ./pidl/pidl --outputdir librpc/gen_ndr --parse --ndr-header --header --ndr-parser --server --client --dcom-proxy --com-header --swig --odl --ejs $PIDL_EXTRA_ARGS" +PIDL="$PERL ./pidl/pidl --outputdir librpc/gen_ndr --ndr-header --header --ndr-parser --server --client --dcom-proxy --com-header --swig --odl --ejs $PIDL_EXTRA_ARGS" if [ x$FULLBUILD = xFULL ]; then echo Rebuilding all idl files in librpc/idl |