diff options
author | paul <paul> | 2003-05-07 18:12:43 +0200 |
---|---|---|
committer | paul <paul> | 2003-05-07 18:12:43 +0200 |
commit | bca84274cf9b525d8a4ae8f06d94dfbfd8af1afb (patch) | |
tree | 5f5251d90c8d7f7cdf8645621e9a7313390a4e4d /configure.ac | |
parent | Reverting the NSSA maxage walker loop addition for now, until all the other (diff) | |
download | frr-bca84274cf9b525d8a4ae8f06d94dfbfd8af1afb.tar.xz frr-bca84274cf9b525d8a4ae8f06d94dfbfd8af1afb.zip |
From: Sergiy Vyshnevetskiy <serg@vostok.net>
Subject: [PATCH] sockdir
"configure.ac" script ignores absent socket directory. So do all demons
(with just a puzzling complaint to _stderr_ only!). I added /tmp and
/var/tmp to the list of possible dirs. They should be present in most
configurations.
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6a0cf3b63..bdc87e3c8 100755 --- a/configure.ac +++ b/configure.ac @@ -871,7 +871,8 @@ if test "${localstatedir}" = '${prefix}/var'; then [for ZEBRA_SOCK_DIR in ${ac_sock_prefix}/var/run/zebra dnl ${ac_sock_prefix}/var/run dnl ${ac_sock_prefix}/var/adm dnl - ${ac_sock_prefix}/tmp; dnl + ${ac_sock_prefix}/tmp dnl + /tmp /var/tmp; dnl do test -d $ZEBRA_SOCK_DIR && break done |