]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Revert "make idl: Only compile idl files newer than the output to be generated."
authorMichael Adam <obnox@samba.org>
Fri, 29 Feb 2008 12:17:18 +0000 (13:17 +0100)
committerMichael Adam <obnox@samba.org>
Fri, 29 Feb 2008 12:17:28 +0000 (13:17 +0100)
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

index 39a63573b90ed5e85812c6a0c5ac38c90c9f01b7..7aaddc70c73efea3ca15373330b4be4f5e6cd529 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 ] ; 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