diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-05-22 12:35:15 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-05-28 12:17:11 +1000 |
commit | 167b8bddad24421a2e8fcf0e7647ef3296b1665c (patch) | |
tree | bffe36654d7a26ecd8f95e52abf441ec31bae9c6 /source3 | |
parent | c5bde695683be4af68cf8eb876f88a307bf2fcd3 (diff) | |
download | samba-167b8bddad24421a2e8fcf0e7647ef3296b1665c.tar.gz samba-167b8bddad24421a2e8fcf0e7647ef3296b1665c.tar.xz samba-167b8bddad24421a2e8fcf0e7647ef3296b1665c.zip |
build: Remove unused build_idl.sh
Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/script/build_idl.sh | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/source3/script/build_idl.sh b/source3/script/build_idl.sh deleted file mode 100755 index 97e813ece0..0000000000 --- a/source3/script/build_idl.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -if [ "$1" = "--full" ]; then - FULL=1 - shift 1 -else - FULL=0 -fi - -ARGS="--includedir=../librpc/idl --outputdir $PIDL_OUTPUTDIR --header --ndr-parser --client --samba3-ndr-server $PIDL_ARGS --" -IDL_FILES="$*" - -oldpwd=`pwd` -cd ${srcdir} - -[ -d $PIDL_OUTPUTDIR ] || mkdir -p $PIDL_OUTPUTDIR || exit 1 - -PIDL="$PIDL $ARGS" - -if [ $FULL = 1 ]; then - echo "Rebuilding all idl files" - $PIDL $IDL_FILES || exit 1 - exit 0 -fi - -## -## Find newer files rather than rebuild all of them -## - -list="" -for f in ${IDL_FILES}; do - b=`basename $f .idl` - outfiles="$b.h ndr_$b.h srv_$b.c" - outfiles="$outfiles ndr_$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 - } - done -done - -## -## generate the ndr stubs -## - -if [ "x$list" != x ]; then - # echo "${PIDL} ${list}" - $PIDL $list || exit 1 -fi - -cd ${oldpwd} - -exit 0 - |