From 0c910a6e44a61c46e65ee5876bd8fb4e46e343fa Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 27 Apr 2006 09:32:26 +0000 Subject: r15291: $f already has the $srcdir prefixed metze (This used to be commit db36bf4a32dd750821afd35057141b0d91f175d0) --- source4/script/build_idl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/script') 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 -- cgit