diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-15 05:37:15 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-15 05:37:15 +0000 |
commit | 64352f9ef1e028fedc9f15f6972addf8e1b6f4ff (patch) | |
tree | 59c8c92d0aa75fb3fcd2c68a4b3065ca19771625 /source4/script | |
parent | 807a701f7c9789bff83c33ad6d9e54026355d40b (diff) | |
download | samba-64352f9ef1e028fedc9f15f6972addf8e1b6f4ff.tar.gz samba-64352f9ef1e028fedc9f15f6972addf8e1b6f4ff.tar.bz2 samba-64352f9ef1e028fedc9f15f6972addf8e1b6f4ff.zip |
a script fix for the build farm
(This used to be commit 5f6b0baa300d088a6d7fb91fcbceff594292eaa0)
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/build_idl.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh index f39fab3a65..c96cca0c79 100755 --- a/source4/script/build_idl.sh +++ b/source4/script/build_idl.sh @@ -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 |