summaryrefslogtreecommitdiff
path: root/source4/script
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-12-08 02:24:40 +0000
committerAndrew Tridgell <tridge@samba.org>2003-12-08 02:24:40 +0000
commit58714e6bda5c12388119cba8688c7cd7140ce85f (patch)
tree9713af088a3cf1f48dca834aa8baed1b39036f5f /source4/script
parentdaeffe3f11f4cf2eabb7ab101e0597de005aa165 (diff)
downloadsamba-58714e6bda5c12388119cba8688c7cd7140ce85f.tar.gz
samba-58714e6bda5c12388119cba8688c7cd7140ce85f.tar.bz2
samba-58714e6bda5c12388119cba8688c7cd7140ce85f.zip
* reduced the number of grammer conflicts a lot using (arbitrary)
precedence rules * build a standalone parser. When we come to distributing Samba4 we can just include idl.pm and other developers won't need Parse::Yapp installed * avoid the recursive make in most cases in build_idl.sh (This used to be commit be2c2be459d1bed41c113590e70711cb89ad12b9)
Diffstat (limited to 'source4/script')
-rwxr-xr-xsource4/script/build_idl.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh
index 8c04db6f37..c9594f8a80 100755
--- a/source4/script/build_idl.sh
+++ b/source4/script/build_idl.sh
@@ -4,7 +4,10 @@ FULLBUILD=$1
[ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1
-( cd build/pidl && make ) || exit 1
+if [ ! -f build/pidl/idl.pm -o build/pidl/idl.yp -nt build/pidl/idl.pm ]; then
+ echo Rebuilding IDL parser
+ ( cd build/pidl && make ) || exit 1;
+fi
PIDL="build/pidl/pidl.pl --output librpc/gen_ndr/ndr_ --parse --header --parser"
TABLES="build/pidl/tables.pl --output librpc/gen_ndr/tables"