From 1fb69ad1f5c79dd77f73a5fee266e1e363e6974d Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 29 Feb 2008 13:17:18 +0100 Subject: [PATCH] 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 --- source/script/build_idl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3