]> granicus.if.org Git - neomutt/commitdiff
build: fix bmake's lack of variable expansion in "include" lines
authorPietro Cerutti <gahr@gahr.ch>
Wed, 28 Mar 2018 07:33:15 +0000 (07:33 +0000)
committerPietro Cerutti <gahr@gahr.ch>
Wed, 28 Mar 2018 07:33:15 +0000 (07:33 +0000)
test/Makefile.autosetup

index f499a0f4ea1523c78fe235f6474615cfdd28cb36..94d835bf350fa3332f560991fb37ced1b8c10194 100644 (file)
@@ -21,6 +21,7 @@ clean-test:
 install-test:
 uninstall-test:
 
--include $(TEST_OBJS:.o=.Po)
+TEST_DEPFILES = $(TEST_OBJS:.o=.Po)
+-include $(TEST_DEPFILES)
 
 # vim: set ts=8 noexpandtab: