diff options
-rwxr-xr-x | librpc/build_idl.sh | 2 | ||||
-rwxr-xr-x | source3/script/build_idl.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/librpc/build_idl.sh b/librpc/build_idl.sh index 4ef1e4b47e..c335557d87 100755 --- a/librpc/build_idl.sh +++ b/librpc/build_idl.sh @@ -38,7 +38,7 @@ for f in ${IDL_FILES}; do list="$list $f" break } - test "`find $f -newer $PIDL_OUTPUTDIR/$o`" = "" && { + test "`find $f -newer $PIDL_OUTPUTDIR/$o`" != "" && { list="$list $f" break } diff --git a/source3/script/build_idl.sh b/source3/script/build_idl.sh index 2a73755f0a..8877913137 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 } - test "`find $f -newer $PIDL_OUTPUTDIR/$o`" = "" && { + test "`find $f -newer $PIDL_OUTPUTDIR/$o`" != "" && { list="$list $f" break } |