From f8dc376c77444d36aad3e99cac234d9a8b5d4031 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 14 Oct 2014 16:46:07 +0200 Subject: [PATCH] swanctl: Fix man page build on FreeBSD BSD make seems to only evaluate $< for certain rules (like the suffix rule used to generate the config template). --- src/swanctl/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/swanctl/Makefile.am b/src/swanctl/Makefile.am index 482688c97..b84d70587 100644 --- a/src/swanctl/Makefile.am +++ b/src/swanctl/Makefile.am @@ -46,7 +46,7 @@ CLEANFILES = $(man_MANS) swanctl.conf.5.main: swanctl.opt $(AM_V_GEN) \ - $(PYTHON) $(top_srcdir)/conf/format-options.py -n -f man $< > $(srcdir)/$@ + $(PYTHON) $(top_srcdir)/conf/format-options.py -n -f man swanctl.opt > $(srcdir)/$@ swanctl.conf.5: swanctl.conf.5.head swanctl.conf.5.main swanctl.conf.5.tail $(AM_V_GEN) \