diff options
author | Martin Mares <mj@ucw.cz> | 2004-05-31 19:53:02 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2004-05-31 19:53:02 +0200 |
commit | a4ffe2739d1a3efb45f209b63b2b6faa558e43a9 (patch) | |
tree | f2ea13433c2707ceb80725981a836080b91c1ead /tools | |
parent | 03e3d184b2d8fac4c82408b1ac1738cb7af5680e (diff) | |
download | bird-a4ffe2739d1a3efb45f209b63b2b6faa558e43a9.tar bird-a4ffe2739d1a3efb45f209b63b2b6faa558e43a9.zip |
Bird's control socket should be in /var/run and the convention for
--localstatedir is /var. The control socket pathname creation is thus
corrected here.
(Andreas)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index 6f9cd2e..8b901ef 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -37,7 +37,7 @@ userdocs progdocs: .dir-stamp sysdep/paths.h: echo >sysdep/paths.h "/* Generated by Makefile, don't edit manually! */" echo >>sysdep/paths.h "#define PATH_CONFIG_DIR \"$(sysconfdir)\"" - echo >>sysdep/paths.h "#define PATH_CONTROL_SOCKET_DIR \"$(localstatedir)\"" + echo >>sysdep/paths.h "#define PATH_CONTROL_SOCKET_DIR \"$(localstatedir)/run\"" tags: cd $(srcdir) ; etags -lc `find $(static-dirs) $(addprefix $(objdir)/,$(dynamic-dirs)) $(client-dirs) -name *.[chY]` |