diff options
author | Romain Geissler <romain.geissler@gmail.com> | 2023-03-26 20:00:14 +0000 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-03-27 16:58:08 -0300 |
commit | 57ce87a940071a152a27e1e1be1dc9eced55ca6c (patch) | |
tree | b162b5f730289210762213df947987a284c973d9 | |
parent | 743963cad7cf12563f67368f9c5d279adc796d67 (diff) | |
download | glibc-57ce87a940071a152a27e1e1be1dc9eced55ca6c.zip glibc-57ce87a940071a152a27e1e1be1dc9eced55ca6c.tar.gz glibc-57ce87a940071a152a27e1e1be1dc9eced55ca6c.tar.bz2 |
support: introduce support_sysconfdir_prefix
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
-rw-r--r-- | support/Makefile | 3 | ||||
-rw-r--r-- | support/support.h | 2 | ||||
-rw-r--r-- | support/support_paths.c | 7 |
3 files changed, 11 insertions, 1 deletions
diff --git a/support/Makefile b/support/Makefile index 05b3115..71d5148 100644 --- a/support/Makefile +++ b/support/Makefile @@ -231,7 +231,8 @@ CFLAGS-support_paths.c = \ -DSBINDIR_PATH=\"$(sbindir)\" \ -DSLIBDIR_PATH=\"$(slibdir)\" \ -DROOTSBINDIR_PATH=\"$(rootsbindir)\" \ - -DCOMPLOCALEDIR_PATH=\"$(complocaledir)\" + -DCOMPLOCALEDIR_PATH=\"$(complocaledir)\" \ + -DSYSCONFDIR_PATH=\"$(sysconfdir)\" # In support_timespec_check_in_range we may be passed a very tight # range for which we should produce a correct result for expected diff --git a/support/support.h b/support/support.h index 525ff1e..b7f76bf 100644 --- a/support/support.h +++ b/support/support.h @@ -144,6 +144,8 @@ extern const char support_slibdir_prefix[]; extern const char support_install_rootsbindir[]; /* Corresponds to the install's compiled locale directory. */ extern const char support_complocaledir_prefix[]; +/* Corresponds to the install's etc/ directory. */ +extern const char support_sysconfdir_prefix[]; /* Copies the file at the path FROM to TO. If TO does not exist, it is created. If TO is a regular file, it is truncated before diff --git a/support/support_paths.c b/support/support_paths.c index f9d7599..0710bcd 100644 --- a/support/support_paths.c +++ b/support/support_paths.c @@ -92,3 +92,10 @@ const char support_complocaledir_prefix[] = COMPLOCALEDIR_PATH; #else # error please -DCOMPLOCALEDIR_PATH=something in the Makefile #endif + +#ifdef SYSCONFDIR_PATH +/* Corresponds to the install's etc/ directory. */ +const char support_sysconfdir_prefix[] = SYSCONFDIR_PATH; +#else +# error please -DSYSCONFDIR_PATH=something in the Makefile +#endif |