1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

r15291: $f already has the $srcdir prefixed

metze
(This used to be commit db36bf4a32)
This commit is contained in:
Stefan Metzmacher 2006-04-27 09:32:26 +00:00 committed by Gerald (Jerry) Carter
parent ad6ce81eea
commit 0c910a6e44

View File

@ -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