From 0d99e58f272ab05873b706a154a528d04749c335 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 12 Oct 2008 04:41:53 +0200 Subject: Fix include paths for files that aren't compiled - breaks dependency file generation. --- source4/lib/com/dcom/main.c | 2 +- source4/lib/com/dcom/tables.c | 2 +- source4/ntvfs/sysdep/sys_lease_linux.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source4/lib/com/dcom/main.c b/source4/lib/com/dcom/main.c index 3d2c13587d..695bfa7f98 100644 --- a/source4/lib/com/dcom/main.c +++ b/source4/lib/com/dcom/main.c @@ -28,7 +28,7 @@ #include "librpc/rpc/dcerpc.h" #include "lib/com/dcom/dcom.h" #include "librpc/ndr/ndr_table.h" -#include "lib/util/dlinklist.h" +#include "../lib/util/dlinklist.h" #include "auth/credentials/credentials.h" #include "libcli/composite/composite.h" diff --git a/source4/lib/com/dcom/tables.c b/source4/lib/com/dcom/tables.c index 26a18a9ae9..f94aa87925 100644 --- a/source4/lib/com/dcom/tables.c +++ b/source4/lib/com/dcom/tables.c @@ -20,7 +20,7 @@ */ #include "includes.h" -#include "lib/util/dlinklist.h" +#include "../lib/util/dlinklist.h" #include "librpc/gen_ndr/com_dcom.h" #include "lib/com/dcom/dcom.h" diff --git a/source4/ntvfs/sysdep/sys_lease_linux.c b/source4/ntvfs/sysdep/sys_lease_linux.c index 0727eed212..41f1cbd710 100644 --- a/source4/ntvfs/sysdep/sys_lease_linux.c +++ b/source4/ntvfs/sysdep/sys_lease_linux.c @@ -27,7 +27,7 @@ #include "ntvfs/sysdep/sys_lease.h" #include "ntvfs/ntvfs.h" #include "librpc/gen_ndr/ndr_opendb.h" -#include "lib/util/dlinklist.h" +#include "../lib/util/dlinklist.h" #include "cluster/cluster.h" #define LINUX_LEASE_RT_SIGNAL (SIGRTMIN+1) -- cgit