diff options
Diffstat (limited to 'source4/script/build_idl.sh')
-rwxr-xr-x | source4/script/build_idl.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh index 1b38245e17..63e6ae73b7 100755 --- a/source4/script/build_idl.sh +++ b/source4/script/build_idl.sh @@ -21,7 +21,7 @@ for f in $srcdir/librpc/idl/*.idl ; do ndr="librpc/gen_ndr/ndr_$basename.c" # blergh - most shells don't have the -nt function if [ -f $ndr ]; then - if [ x$srcdir/`find $f -newer $ndr -print` = x$f ]; then + if [ x`find $f -newer $ndr -print` = x$f ]; then list="$list $f" fi else |