diff options
Diffstat (limited to 'source3/script/build_idl.sh')
-rwxr-xr-x | source3/script/build_idl.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/build_idl.sh b/source3/script/build_idl.sh index 72d44add61f..2a73755f0a2 100755 --- a/source3/script/build_idl.sh +++ b/source3/script/build_idl.sh @@ -25,7 +25,7 @@ for f in ${IDL_FILES}; do list="$list $f" break } - [ $f -nt $PIDL_OUTPUTDIR/$o ] && { + test "`find $f -newer $PIDL_OUTPUTDIR/$o`" = "" && { list="$list $f" break } |