summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-05-22 12:30:10 +1000
committerAndrew Bartlett <abartlet@samba.org>2013-05-28 12:17:11 +1000
commit87049bf32fa069916800316366cc577116b9d703 (patch)
tree97beba0e42d742a48b75fd4c3e8a122774634410 /librpc
parentaf443d0017125209cce61fbab88b2385bf1df9df (diff)
downloadsamba-87049bf32fa069916800316366cc577116b9d703.tar.gz
samba-87049bf32fa069916800316366cc577116b9d703.tar.bz2
samba-87049bf32fa069916800316366cc577116b9d703.zip
build: Remove unused build_idl.sh
Reviewed-by: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'librpc')
-rwxr-xr-xlibrpc/build_idl.sh67
1 files changed, 0 insertions, 67 deletions
diff --git a/librpc/build_idl.sh b/librpc/build_idl.sh
deleted file mode 100755
index f5901db7e6..0000000000
--- a/librpc/build_idl.sh
+++ /dev/null
@@ -1,67 +0,0 @@
-#!/bin/sh
-
-if [ "$1" = "--full" ]; then
- FULL=1
- shift 1
-else
- FULL=0
-fi
-
-ARGS="--outputdir $PIDL_OUTPUTDIR --header --ndr-parser --samba3-ndr-server --server --client --python --dcom-proxy --com-header $PIDL_ARGS --"
-IDL_FILES="$*"
-
-oldpwd=`pwd`
-cd ${srcdir}
-
-[ -d $PIDL_OUTPUTDIR ] || mkdir -p $PIDL_OUTPUTDIR || exit 1
-
-PIDL_DIR=`dirname $PIDL`
-PIDL_CMD="$PIDL $ARGS"
-
-if [ $FULL = 1 ]; then
- echo "Rebuilding all idl files"
- $PIDL_CMD $IDL_FILES || exit 1
- exit 0
-fi
-
-##
-## Find newer files rather than rebuild all of them. Also handle the case
-## where the pidl compiler itself is newer.
-##
-PIDL_NEWEST=`find $PIDL_DIR -type f -print | xargs ls -rt | tail -1`
-echo "jfyi: PIDL_NEWEST is $PIDL_NEWEST"
-
-list=""
-for f in ${IDL_FILES}; do
- b=`basename $f .idl`
- outfiles="$b.h ndr_${b}_c.c ndr_$b.h ndr_${b}_s.c srv_$b.c"
- outfiles="$outfiles ndr_$b.c ndr_${b}_c.h py_$b.c srv_$b.h"
-
- for o in $outfiles; do
- [ -f $PIDL_OUTPUTDIR/$o ] || {
- list="$list $f"
- break
- }
- test "`find $f -newer $PIDL_OUTPUTDIR/$o`" != "" && {
- list="$list $f"
- break
- }
- test "`find $PIDL_NEWEST -newer $PIDL_OUTPUTDIR/$o`" != "" && {
- list="$list $f"
- break
- }
- done
-done
-
-##
-## generate the ndr stubs
-##
-
-if [ "x$list" != x ]; then
- # echo "${PIDL_CMD} ${list}"
- $PIDL_CMD $list || exit 1
-fi
-
-cd ${oldpwd}
-
-exit 0