From: Tobias Brunner Date: Tue, 14 Oct 2014 14:46:07 +0000 (+0200) Subject: swanctl: Fix man page build on FreeBSD X-Git-Tag: 5.2.1~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8dc376c77444d36aad3e99cac234d9a8b5d4031;p=thirdparty%2Fstrongswan.git 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). --- diff --git a/src/swanctl/Makefile.am b/src/swanctl/Makefile.am index 482688c977..b84d705879 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) \