1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

support: Expose sbindir as support_sbindir_prefix

This commit is contained in:
Florian Weimer
2019-05-20 21:08:40 +02:00
parent b62bb3bc68
commit 75c51570c7
4 changed files with 17 additions and 0 deletions

View File

@@ -65,6 +65,13 @@ const char support_bindir_prefix[] = BINDIR_PATH;
# error please -DBINDIR_PATH=something in the Makefile
#endif
#ifdef SBINDIR_PATH
/* Corresponds to the install's bin/ directory. */
const char support_sbindir_prefix[] = SBINDIR_PATH;
#else
# error please -DSBINDIR_PATH=something in the Makefile
#endif
#ifdef ROOTSBINDIR_PATH
/* Corresponds to the install's sbin/ directory. */
const char support_install_rootsbindir[] = ROOTSBINDIR_PATH;