From: paul Date: Wed, 7 May 2003 16:12:43 +0000 (+0000) Subject: From: Sergiy Vyshnevetskiy X-Git-Tag: frr-2.0-rc1~4077 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=bca84274cf9b525d8a4ae8f06d94dfbfd8af1afb;p=mirror%2Ffrr.git From: Sergiy Vyshnevetskiy 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. --- diff --git a/configure.ac b/configure.ac index 6a0cf3b633..bdc87e3c85 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