aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2018-11-18 01:22:09 +0100
committerOndrej Zajicek (work) <santiago@crfreenet.org>2018-11-18 01:22:09 +0100
commitd0b4597842ba1f65e5280529fca243ce5b5043fa (patch)
tree6ef508d491bf2dfc55b5b6a02fa589dd5054b7b5 /Makefile.in
parentf2d8e6801e88a84b1e57da72d078d7569598a5f5 (diff)
downloadbird-d0b4597842ba1f65e5280529fca243ce5b5043fa.tar.gz
Configure: Use standard --runstatedir option
Newer Autoconf defines --runstatedir option for setting directory for run-time variable data. Use it instead our old --with-runtimedir.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index a5816cbd..0ecd6811 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -33,6 +33,7 @@ bindir=@bindir@
sbindir=@sbindir@
sysconfdir=@sysconfdir@
localstatedir=@localstatedir@
+runstatedir=@runstatedir@
docdir=@prefix@/doc
srcdir := @srcdir@
@@ -183,7 +184,7 @@ cscope:
# Install
install: all
- $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/@runtimedir@
+ $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/$(runstatedir)
for BIN in bird @CLIENT@ ; do \
$(INSTALL_PROGRAM) $(exedir)/$$BIN $(DESTDIR)/$(sbindir)/$$BIN ; \
done