From: Andrew Tridgell Date: Tue, 4 May 2010 05:48:54 +0000 (+0200) Subject: s3-idl: update the 2nd build_idl.sh script X-Git-Tag: samba-3.6.0pre1~2270 X-Git-Url: http://git.samba.org/samba.git/?p=nivanova%2Fsamba-autobuild%2F.git;a=commitdiff_plain;h=f4000eecf45b160d3d1d1e6147537d59b05b39a8 s3-idl: update the 2nd build_idl.sh script --- diff --git a/source3/script/build_idl.sh b/source3/script/build_idl.sh index 0f4908114ed..72d44add61f 100755 --- a/source3/script/build_idl.sh +++ b/source3/script/build_idl.sh @@ -16,16 +16,20 @@ PIDL="$PIDL $ARGS" list="" for f in ${IDL_FILES}; do - basename=`basename $f .idl` - ndr="$PIDL_OUTPUTDIR/ndr_$basename.c" - - if [ -f $ndr ]; then - if [ "x`find $f -newer $ndr -print`" = "x$f" ]; then - list="$list $f" - fi - else + b=`basename $f .idl` + outfiles="cli_$b.c $b.h ndr_$b.h srv_$b.c" + outfiles="$outfiles cli_$b.h ndr_$b.c srv_$b.h" + + for o in $outfiles; do + [ -f $PIDL_OUTPUTDIR/$o ] || { + list="$list $f" + break + } + [ $f -nt $PIDL_OUTPUTDIR/$o ] && { list="$list $f" - fi + break + } + done done ##