mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 15:33:54 +01:00
ircd::fs: Add missing base path for RB_LIB_DIR.
This commit is contained in:
parent
1d14a2d7c1
commit
d8bfacd128
2 changed files with 2 additions and 0 deletions
|
@ -86,6 +86,7 @@ enum class ircd::fs::base
|
|||
DATA, ///< Read-only data directory (e.g. $prefix/share)
|
||||
DB, ///< Database directory (e.g. $prefix/var/db)
|
||||
LOG, ///< Logfile directory (e.g. $prefix/var/log)
|
||||
LIB, ///< Shared library directory (e.g. $prefix/lib)
|
||||
MODULES, ///< Modules directory (e.g. $prefix/lib/modules)
|
||||
|
||||
_NUM_
|
||||
|
|
|
@ -2292,6 +2292,7 @@ ircd::fs::basepaths
|
|||
{ "data directory", RB_DATA_DIR },
|
||||
{ "database directory", RB_DB_DIR },
|
||||
{ "log directory", RB_LOG_DIR },
|
||||
{ "library directory", RB_LIB_DIR },
|
||||
{ "module directory", RB_MODULE_DIR },
|
||||
}};
|
||||
|
||||
|
|
Loading…
Reference in a new issue