make idl: Only compile idl files newer than the output to be generated.
[derrell/samba3/.git] / source / script / build_idl.sh
index 7aaddc70c73efea3ca15373330b4be4f5e6cd529..39a63573b90ed5e85812c6a0c5ac38c90c9f01b7 100755 (executable)
@@ -23,7 +23,7 @@ for f in ${IDL_FILES}; do
        basename=`basename $f .idl`
        ndr="librpc/gen_ndr/ndr_$basename.c"
 
-       if [ -f $ndr ] && false; then
+       if [ -f $ndr ] ; then
                if [ "x`find librpc/idl/$f -newer $ndr -print`" = "xlibrpc/idl/$f" ]; then
                        list="$list librpc/idl/$f"
                fi