diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-12-20 13:15:53 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-12-20 13:15:53 +0100 |
commit | 16fb28e588842a2ae604620ff1ae43c851a1fbb5 (patch) | |
tree | 30b79d5750290fb7236ea6846fd5b67ff01d77e4 /tools | |
parent | e7e3b335bf179441f4482f7219b4862797ed66ca (diff) |
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 'tools')
-rw-r--r-- | tools/Makefile.in | 2 | ||||
-rw-r--r-- | tools/Rules.in | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index 01bb7a7c..38eb60e5 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -71,7 +71,7 @@ tags: cd $(srcdir) ; etags -lc `find $(static-dirs) $(addprefix $(objdir)/,$(dynamic-dirs)) $(client-dirs) -name *.[chY]` install: all - $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/@runtimedir@ + $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/$(runstatedir) $(INSTALL_PROGRAM) $(exedir)/bird $(DESTDIR)/$(sbindir)/bird@SUFFIX@ $(INSTALL_PROGRAM) $(exedir)/birdcl $(DESTDIR)/$(sbindir)/birdcl@SUFFIX@ if test -n "@CLIENT@" ; then \ diff --git a/tools/Rules.in b/tools/Rules.in index f00c85d1..d177ed15 100644 --- a/tools/Rules.in +++ b/tools/Rules.in @@ -39,6 +39,7 @@ bindir=@bindir@ sbindir=@sbindir@ sysconfdir=@sysconfdir@ localstatedir=@localstatedir@ +runstatedir=@runstatedir@ docdir=@prefix@/doc ifdef source |