Skip to content
Snippets Groups Projects
Commit 883c18f7 authored by Alexander Mueller's avatar Alexander Mueller
Browse files

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.
parent 246382ac
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,8 @@ libclp_la_SOURCES = $(DOCHDRS) \ ...@@ -12,7 +12,8 @@ libclp_la_SOURCES = $(DOCHDRS) \
PropertyProxy.cc PropertyProxy.cc
libclp_la_LIBADD = libclp_la_LIBADD =
libclp_la_CPPFLAGS= -DLOFARLOGGER_SUBPACKAGE=\"CLP\" libclp_la_CPPFLAGS= -DLOFARLOGGER_SUBPACKAGE=\"CLP\" \
-I$(top_srcdir)/include
bin_PROGRAMS = CodeLoggingProcessor bin_PROGRAMS = CodeLoggingProcessor
...@@ -22,8 +23,7 @@ CodeLoggingProcessor_LDADD = libclp.la $(LOFAR_DEPEND) \ ...@@ -22,8 +23,7 @@ CodeLoggingProcessor_LDADD = libclp.la $(LOFAR_DEPEND) \
$(top_builddir)/KVLogSys/src/libgcfkvlc.la $(top_builddir)/KVLogSys/src/libgcfkvlc.la
CodeLoggingProcessor_DEPENDENCIES = libclp.la $(LOFAR_DEPEND) \ CodeLoggingProcessor_DEPENDENCIES = libclp.la $(LOFAR_DEPEND) \
$(top_builddir)/KVLogSys/src/libgcfkvlc.la $(top_builddir)/KVLogSys/src/libgcfkvlc.la
CodeLoggingProcessor_CPPFLAGS = -DLOFARLOGGER_SUBPACKAGE=\"CLP\" \ CodeLoggingProcessor_CPPFLAGS = $(libclp_la_CPPFLAGS)
-I$(top_srcdir)/include
BUILT_SOURCES = BUILT_SOURCES =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment