diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-11-18 01:22:09 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-11-18 01:22:09 +0100 |
commit | d0b4597842ba1f65e5280529fca243ce5b5043fa (patch) | |
tree | 6ef508d491bf2dfc55b5b6a02fa589dd5054b7b5 /Makefile.in | |
parent | f2d8e6801e88a84b1e57da72d078d7569598a5f5 (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 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
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 |