diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-05-04 07:48:54 +0200 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-05-04 13:47:08 +0200 |
commit | f4000eecf45b160d3d1d1e6147537d59b05b39a8 (patch) | |
tree | 7840e5401b76f0dfb0a570f845e5bd70d14bd580 | |
parent | 2d13259aeff6bc5768404e5502890218bce128cd (diff) | |
download | samba-f4000eecf45b160d3d1d1e6147537d59b05b39a8.tar.gz samba-f4000eecf45b160d3d1d1e6147537d59b05b39a8.tar.bz2 samba-f4000eecf45b160d3d1d1e6147537d59b05b39a8.zip |
s3-idl: update the 2nd build_idl.sh script
-rwxr-xr-x | source3/script/build_idl.sh | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/source3/script/build_idl.sh b/source3/script/build_idl.sh index 0f4908114e..72d44add61 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 ## |