diff options
author | Sadie Powell <sadie@witchery.services> | 2021-01-31 14:33:53 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-01-31 14:38:46 +0000 |
commit | 55a0a6ab66739fae65d123fadff1a31d96999c16 (patch) | |
tree | ff9c4c9d0af8b47fd0ad5b078ef85d079f5d88ec /make/template/inspircd | |
parent | 10714b0ded0ff1304034bb3c2eab9ef5fb163616 (diff) |
Fix the base path being used for more than just the install prefix.
Diffstat (limited to 'make/template/inspircd')
-rw-r--r-- | make/template/inspircd | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/make/template/inspircd b/make/template/inspircd index c50d28c7f..9bc7dd85f 100644 --- a/make/template/inspircd +++ b/make/template/inspircd @@ -62,11 +62,10 @@ use constant { }; my $scriptpath = "@SCRIPT_DIR@"; -my $basepath = "@BASE_DIR@"; my $confpath = "@CONFIG_DIR@"; my $binpath = "@BINARY_DIR@"; my $runtimedir = "@RUNTIME_DIR@"; -my $valgrindlogpath = "$basepath/valgrindlogs"; +my $valgrindlogpath = "@LOG_DIR@/valgrind"; my $executable = "inspircd"; my $version = "@VERSION_FULL@"; my $uid = "@UID@"; |