diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-04-27 09:32:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:05:03 -0500 |
commit | 0c910a6e44a61c46e65ee5876bd8fb4e46e343fa (patch) | |
tree | 82f097da24417dbd2f7f50a3800cdb32f48b6595 /source4 | |
parent | ad6ce81eea6c8a30ed555f11d1da30d9beafe313 (diff) | |
download | samba-0c910a6e44a61c46e65ee5876bd8fb4e46e343fa.tar.gz samba-0c910a6e44a61c46e65ee5876bd8fb4e46e343fa.tar.bz2 samba-0c910a6e44a61c46e65ee5876bd8fb4e46e343fa.zip |
r15291: $f already has the $srcdir prefixed
metze
(This used to be commit db36bf4a32dd750821afd35057141b0d91f175d0)
Diffstat (limited to 'source4')
-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 |