diff options
author | Björn Jacke <bj@sernet.de> | 2009-03-19 01:16:46 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-03-23 13:20:06 +0100 |
commit | a087310b336bf1b6b2827b27d32071876c23f3a9 (patch) | |
tree | 9487cbbaa01e26998fdef3cc4435c71df37eebcf | |
parent | f4aec7b5907065a2f48d1b19065c6673aff6a190 (diff) | |
download | samba-a087310b336bf1b6b2827b27d32071876c23f3a9.tar.gz samba-a087310b336bf1b6b2827b27d32071876c23f3a9.tar.bz2 samba-a087310b336bf1b6b2827b27d32071876c23f3a9.zip |
remove non standard way to point to ctdb path
we can provide the path to ctdb via the --with-ctdb=... configure flag like we
do it with other packageѕ, too. There is no need for another redundnant
Makefile hack to point the ctdb header location
Signed-off-by: Michael Adam <obnox@samba.org>
-rw-r--r-- | source3/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 46216c7f08..673636f787 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -158,7 +158,7 @@ CODEPAGEDIR = @codepagedir@ # the directory where pid files go PIDDIR = @piddir@ -FLAGS = -I. -I$(srcdir) @FLAGS1@ @SAMBA_CPPFLAGS@ $(CPPFLAGS) -I$(CTDBDIR)/include $(ISA) -I$(srcdir)/lib -I.. -D_SAMBA_BUILD_=3 -I../source4 +FLAGS = -I. -I$(srcdir) @FLAGS1@ @SAMBA_CPPFLAGS@ $(CPPFLAGS) $(ISA) -I$(srcdir)/lib -I.. -D_SAMBA_BUILD_=3 -I../source4 PATH_FLAGS = -DSMB_PASSWD_FILE=\"$(SMB_PASSWD_FILE)\" \ -DPRIVATE_DIR=\"$(PRIVATE_DIR)\" \ @@ -173,7 +173,6 @@ PATH_FLAGS = -DSMB_PASSWD_FILE=\"$(SMB_PASSWD_FILE)\" \ -DMODULESDIR=\"$(MODULESDIR)\" \ -DLOGFILEBASE=\"$(LOGFILEBASE)\" \ -DSHLIBEXT=\"@SHLIBEXT@\" \ - -DCTDBDIR=\"$(CTDBDIR)\" \ -DNCALRPCDIR=\"$(NCALRPCDIR)\" \ -DCONFIGDIR=\"$(CONFIGDIR)\" \ -DCODEPAGEDIR=\"$(CODEPAGEDIR)\" \ |