1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

a script fix for the build farm

(This used to be commit 5f6b0baa30)
This commit is contained in:
Andrew Tridgell 2003-12-15 05:37:15 +00:00
parent 807a701f7c
commit 64352f9ef1

View File

@ -20,7 +20,8 @@ list=""
for f in librpc/idl/*.idl; do
basename=`basename $f .idl`
if [ "$f" -nt librpc/gen_ndr/ndr_$basename.c ]; then
ndr="librpc/gen_ndr/ndr_$basename.c"
if [ "$f" -nt $ndr -o ! -f $ndr ]; then
list="$list $f"
fi
done