blob: ca04b00d7a0e8a96ebbd8f7f83af62b175c1fe17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Index: src/bareos/webui/CMakeLists.txt
===================================================================
--- src.orig/bareos/webui/CMakeLists.txt
+++ src/bareos/webui/CMakeLists.txt
@@ -64,7 +64,9 @@ message(" VERSION_STRING:
message(" BAREOS_FULL_VERSION: ${BAREOS_FULL_VERSION} ")
message(" LocalBuildDefinitionsFile: ${BareosLocalBuildDefinitionsFile}")
-if(EXISTS ${sysconfdir}/httpd/conf.d)
+if(EXISTS ${sysconfdir}/httpd/conf/extra )
+ set(HTTPD_CONF ${sysconfdir}/httpd/conf/extra )
+elseif(EXISTS ${sysconfdir}/httpd/conf.d)
set(HTTPD_CONF ${sysconfdir}/httpd/conf.d)
elseif(EXISTS ${sysconfdir}/apache2/conf.d)
set(HTTPD_CONF ${sysconfdir}/apache2/conf.d)
|