From: Michael Adam Date: Fri, 29 Feb 2008 12:17:18 +0000 (+0100) Subject: Revert "make idl: Only compile idl files newer than the output to be generated." X-Git-Tag: samba-3.3.0pre1~3436^2~72 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1fb69ad1f5c79dd77f73a5fee266e1e363e6974d;p=thirdparty%2Fsamba.git Revert "make idl: Only compile idl files newer than the output to be generated." This reverts commit 79c199d16e565eabd9fd971247f8df62689bb92a. Revert this until pidl is capable of doing decent dependency tracking itself (importing types from imported idls). Michael --- diff --git a/source/script/build_idl.sh b/source/script/build_idl.sh index 39a63573b90..7aaddc70c73 100755 --- a/source/script/build_idl.sh +++ b/source/script/build_idl.sh @@ -23,7 +23,7 @@ for f in ${IDL_FILES}; do basename=`basename $f .idl` ndr="librpc/gen_ndr/ndr_$basename.c" - if [ -f $ndr ] ; then + if [ -f $ndr ] && false; then if [ "x`find librpc/idl/$f -newer $ndr -print`" = "xlibrpc/idl/$f" ]; then list="$list librpc/idl/$f" fi