mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 15:21:41 +01:00
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.
This commit is contained in:
parent
7ca4db2b46
commit
22443de789
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue