From: Carl Worth Date: Wed, 18 May 2011 20:15:46 +0000 (-0700) Subject: test: Link to compat files when building program during "make test" X-Git-Tag: debian/0.6_254~151 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=22443de7891ca54cc199c30bdaf2725395062462 test: Link to compat files when building program during "make test" The compilation of the smtp-dummy program would fail if a build was attempted on a system without getline. Fix this by simply including the existing notmuch_compat_srcs variable when constructing the list of source files for compiling smtp-dummy. --- diff --git a/test/Makefile.local b/test/Makefile.local index 7b602bcf..8eb04330 100644 --- a/test/Makefile.local +++ b/test/Makefile.local @@ -2,7 +2,13 @@ dir := test -$(dir)/smtp-dummy: $(dir)/smtp-dummy.c +smtp_dummy_srcs = \ + $(notmuch_compat_srcs) \ + $(dir)/smtp-dummy.c + +smtp_dummy_modules = $(smtp_dummy_srcs:.c=.o) + +$(dir)/smtp-dummy: $(smtp_dummy_modules) $(call quiet,CC) $^ -o $@ .PHONY: test check