From 722afc1b810cef74dbd2738d71866176fd974ec2 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Fri, 22 Jul 2016 19:01:04 +0200 Subject: [PATCH] Make sure that SYSCONFDIR is always set This is useful when ./configure hasn't been run but some source code linters are run in an editor, for example. --- src/portab/portab.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/portab/portab.h b/src/portab/portab.h index 78b6f7e1..70d5ed3e 100644 --- a/src/portab/portab.h +++ b/src/portab/portab.h @@ -175,6 +175,10 @@ extern int vsnprintf PARAMS(( char *str, size_t count, const char *fmt, va_list # define PACKAGE_VERSION VERSION #endif +#ifndef SYSCONFDIR +# define SYSCONFDIR "/etc" +#endif + #endif /* -eof- */ -- 2.39.2