mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-02-20 02:20:35 +01:00
CMake fix: Do not use FORCE in variables which should be changeable by the user.
This commit is contained in:
parent
aba867f242
commit
736445ee44
1 changed files with 3 additions and 3 deletions
|
|
@ -439,8 +439,8 @@ set (DBUS_USER )
|
|||
|
||||
|
||||
if (WIN32)
|
||||
set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS "nonce-tcp:" CACHE STRING "system bus default address" FORCE)
|
||||
set (DBUS_SESSION_BUS_DEFAULT_ADDRESS "nonce-tcp:" CACHE STRING "session bus default address" FORCE)
|
||||
set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS "nonce-tcp:" CACHE STRING "system bus default address")
|
||||
set (DBUS_SESSION_BUS_DEFAULT_ADDRESS "nonce-tcp:" CACHE STRING "session bus default address")
|
||||
|
||||
set (DBUS_SYSTEM_CONFIG_FILE "etc/dbus-1/system.conf")
|
||||
set (DBUS_SESSION_CONFIG_FILE "etc/dbus-1/session.conf")
|
||||
|
|
@ -456,7 +456,7 @@ else (WIN32)
|
|||
set (DBUS_USER "root")
|
||||
endif (WIN32)
|
||||
|
||||
set (DBUS_DAEMON_NAME "dbus-daemon" CACHE STRING "The name of the dbus daemon executable" FORCE)
|
||||
set (DBUS_DAEMON_NAME "dbus-daemon" CACHE STRING "The name of the dbus daemon executable")
|
||||
|
||||
########### create config.h ###############
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue