From 883c18f783e1bc4645a0e608b3e75923f3eab6da Mon Sep 17 00:00:00 2001 From: Alexander Mueller <alexander.mueller@hs.uni-hamburg.de> Date: Wed, 21 Sep 2005 14:32:46 +0000 Subject: [PATCH] BugID: 330 rub first calls "make all" and then "make install". In that case in the Makefile.am misses an include path declaration for the lib. This is fixed now. --- MAC/GCF/LogSys/CLP/src/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MAC/GCF/LogSys/CLP/src/Makefile.am b/MAC/GCF/LogSys/CLP/src/Makefile.am index 3980e5bba30..09228483e22 100644 --- a/MAC/GCF/LogSys/CLP/src/Makefile.am +++ b/MAC/GCF/LogSys/CLP/src/Makefile.am @@ -12,7 +12,8 @@ libclp_la_SOURCES = $(DOCHDRS) \ PropertyProxy.cc libclp_la_LIBADD = -libclp_la_CPPFLAGS= -DLOFARLOGGER_SUBPACKAGE=\"CLP\" +libclp_la_CPPFLAGS= -DLOFARLOGGER_SUBPACKAGE=\"CLP\" \ + -I$(top_srcdir)/include bin_PROGRAMS = CodeLoggingProcessor @@ -22,8 +23,7 @@ CodeLoggingProcessor_LDADD = libclp.la $(LOFAR_DEPEND) \ $(top_builddir)/KVLogSys/src/libgcfkvlc.la CodeLoggingProcessor_DEPENDENCIES = libclp.la $(LOFAR_DEPEND) \ $(top_builddir)/KVLogSys/src/libgcfkvlc.la -CodeLoggingProcessor_CPPFLAGS = -DLOFARLOGGER_SUBPACKAGE=\"CLP\" \ - -I$(top_srcdir)/include +CodeLoggingProcessor_CPPFLAGS = $(libclp_la_CPPFLAGS) BUILT_SOURCES = -- GitLab