diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-28 00:48:05 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-28 00:48:05 +0000 |
commit | df5949efb425668f8e7ae38c0c858bd90529255a (patch) | |
tree | 6fc93659cff35e9a4a9a433d0a7cc4eb5e383f42 /source4/script/build_idl.sh | |
parent | abff8aac56b2481de2223bf43ae2098cc7ab2391 (diff) | |
download | samba-df5949efb425668f8e7ae38c0c858bd90529255a.tar.gz samba-df5949efb425668f8e7ae38c0c858bd90529255a.tar.xz samba-df5949efb425668f8e7ae38c0c858bd90529255a.zip |
added auto-generation of the IDL interface tables. This makes two less
places that need to be edited when someone adds a new IDL file.
(This used to be commit ccd9ddeed679baa6cbb05ac728b381b50420e00f)
Diffstat (limited to 'source4/script/build_idl.sh')
-rwxr-xr-x | source4/script/build_idl.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh index 9ad9391ee05..b31d26c23d1 100755 --- a/source4/script/build_idl.sh +++ b/source4/script/build_idl.sh @@ -8,10 +8,14 @@ FULLBUILD=$1 ( cd build/pidl && make ) || exit 1 PIDL="build/pidl/pidl.pl --output librpc/gen_ndr/ndr_ --parse --header --parser --client librpc/gen_rpc/rpc_" +TABLES="build/pidl/tables.pl --output librpc/gen_ndr/tables" if [ x$FULLBUILD = xFULL ]; then echo Rebuilding all idl files in librpc/idl $PIDL librpc/idl/*.idl || exit 1 + + echo Rebuilding IDL tables + $TABLES librpc/gen_ndr/ndr_*.h exit 0 fi |