From 889ae0a29d236f8172047ed64a3cf874b4cc77d9 Mon Sep 17 00:00:00 2001 Message-Id: <889ae0a29d236f8172047ed64a3cf874b4cc77d9.1717623211.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 28 Sep 2016 12:00:24 +0100 Subject: [PATCH] Makefile.in: Fix `check-ipaddrset' rule to get reference from $(srcdir). Organization: Straylight/Edgeware From: Mark Wooding Makes out-of-tree builds work properly. Signed-off-by: Mark Wooding --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index ba5c0da..6ef9f2a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -164,7 +164,7 @@ eax-%-test.confirm: eax-%-test eax-%-test.vectors check-ipaddrset: ipaddrset-test.py ipaddrset.py ipaddrset-test.expected $(srcdir)/ipaddrset-test.py >ipaddrset-test.new - diff -u ipaddrset-test.expected ipaddrset-test.new + diff -u $(srcdir)/ipaddrset-test.expected ipaddrset-test.new .PRECIOUS: eax-%-test -- [mdw]