From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: network@lists.ipfire.org Subject: [network] [PATCH 1/3] Add missing logdir to Makefile. Date: Wed, 25 Jan 2017 14:48:19 +0100 Message-ID: <20170125134821.15442-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1320087006721472947==" List-Id: --===============1320087006721472947== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit The logdir has not been created during the "make install" process and therefore not been shipped yet. This directory is used to store various databases which contains data about the zones and routes. They can easily accessed by the upcomming WUI to display or compute those information. Signed-off-by: Stefan Schantl --- Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 3c94486..cdb9d39 100644 --- a/Makefile.am +++ b/Makefile.am @@ -48,6 +48,8 @@ hooks_zonesdir = $(hooksdir)/zones triggersdir = $(networkdir)/triggers +logdir = $(localestatedir)/log/network + CLEANFILES = DISTCLEANFILES = EXTRA_DIST = @@ -230,7 +232,8 @@ EXTRA_DIST += \ src/ppp/ip-updown.in INSTALL_DIRS += \ - $(pppdir) + $(pppdir) \ + $(logdir) ppp-install-hook: ln -svf ip-updown $(DESTDIR)$(pppdir)/ip-pre-up -- 2.9.3 --===============1320087006721472947==--