summaryrefslogtreecommitdiff
path: root/source4/script
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-04-27 09:32:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:05:03 -0500
commit0c910a6e44a61c46e65ee5876bd8fb4e46e343fa (patch)
tree82f097da24417dbd2f7f50a3800cdb32f48b6595 /source4/script
parentad6ce81eea6c8a30ed555f11d1da30d9beafe313 (diff)
downloadsamba-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/script')
-rwxr-xr-xsource4/script/build_idl.sh2
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