diff options
Diffstat (limited to 'source4/script/build_idl.sh')
-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 302d7560bd..24f18be2ef 100755 --- a/source4/script/build_idl.sh +++ b/source4/script/build_idl.sh @@ -4,7 +4,7 @@ for f in librpc/idl/*.idl; do echo Processing $f base=`basename $f .idl` ndr=librpc/ndr/ndr_$base - pidl.pl --output $ndr --parse --header --parser $f || exit 1 + pidl.pl --output $ndr --parse --header --parser --client librpc/rpc/rpc_$base.c $f || exit 1 done exit 0 |