From 44dfd039630b229ee4ea11b43fc4c3223f8b86ce Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 9 Nov 2003 08:30:29 +0000 Subject: - added the rest of the LSA calls as stubs - auto-generate the client calls with 'make idl' (This used to be commit 8e52381313fc5a603b6d7e6ff090896c772096e9) --- source4/script/build_idl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/script') 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 -- cgit