]> git.itanic.dy.fi Git - rrdd/commitdiff
Makefile: Fix typo in object list
authorTimo Kokkonen <timo.t.kokkonen@iki.fi>
Tue, 20 Nov 2012 20:08:07 +0000 (22:08 +0200)
committerTimo Kokkonen <timo.t.kokkonen@iki.fi>
Tue, 20 Nov 2012 20:08:07 +0000 (22:08 +0200)
The ONEWIRE_PARSER_OBJS was written incorrectly. This causes ALL_OBJS
list to miss the parser object, which in turn causes the dependency
file to be missing from the ALL_DEBS list. That was causing make to
not detect that onewire_parser.c depends on version.h, and not rebuild
the library when version.h was changed.

Signed-off-by: Timo Kokkonen <timo.t.kokkonen@iki.fi>
Makefile

index 36e60d5d93b50536cefc604d699ea5402d89acf5..871bcd6f4b13d6228c852ef72aa1ba08ef0db78f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ RRDD_OBJS= main.o process.o rrdtool.o parser.o built_in_parsers.o string.o \
 
 ONEWIRE_PARSER_OBJS = onewire_parser.o
 
-ALL_OBJS = $(RRDD_OBJS) $(ONEWIRE_PLUGIN_OBJS)
+ALL_OBJS = $(RRDD_OBJS) $(ONEWIRE_PARSER_OBJS)
 ALL_DEBS = $(patsubst %.o,.%.o.d,$(ALL_OBJS))
 
 ifeq ($(V),1)