summaryrefslogtreecommitdiff
path: root/source3/script
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-02-29 13:17:18 +0100
committerMichael Adam <obnox@samba.org>2008-02-29 13:17:28 +0100
commitaf3e746d9e79f96d004b0f50760b4918ce57eb3a (patch)
treeba396aa87ceb8b0409724c2d20dfed213d2a91ae /source3/script
parentd40b891eb0fa29d34fa3ecfbc00110154a12ffc6 (diff)
downloadsamba-af3e746d9e79f96d004b0f50760b4918ce57eb3a.tar.gz
samba-af3e746d9e79f96d004b0f50760b4918ce57eb3a.tar.bz2
samba-af3e746d9e79f96d004b0f50760b4918ce57eb3a.zip
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 (This used to be commit 1fb69ad1f5c79dd77f73a5fee266e1e363e6974d)
Diffstat (limited to 'source3/script')
-rwxr-xr-xsource3/script/build_idl.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/build_idl.sh b/source3/script/build_idl.sh
index 39a63573b9..7aaddc70c7 100755
--- a/source3/script/build_idl.sh
+++ b/source3/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