Fix to set DCOP_PATH properly

It is only used in dcop module and empty is unwanted situation,
so properly define it in dcop/CMakeLists.txt.
Rerevant header generation is also moved to there, and prevent
to define in main config.h file too.

Signed-off-by: OBATA Akio <obache@wizdas.com>
(cherry picked from commit 56c5973b6b)
v3.5.13-sru
OBATA Akio 4 years ago committed by Slávek Banko
parent b92175e2a3
commit f250423e9d
Signed by: SlavekB
GPG Key ID: 608F5293A04BE668

@ -1097,7 +1097,6 @@ endif( WITH_HSPELL )
##### write configure files #####################
configure_file( config.h.cmake config.h )
configure_file( dcop/dcop-path.h.cmake dcop/dcop-path.h )
configure_file( kdecore/kdemacros.h.cmake kdecore/kdemacros.h )
configure_file( kjs/global.h.in kjs/global.h )
configure_file( kio/kssl/ksslconfig.h.cmake kio/kssl/ksslconfig.h )

@ -15,9 +15,6 @@
/* Define to 1 if using `alloca.c'. */
#undef C_ALLOCA
/* Define where your dcop binary is */
#cmakedefine DCOP_PATH "@DCOP_PATH@"
/* Use su or sudo */
#define DEFAULT_SUPER_USER_COMMAND "@DEFAULT_SUPER_USER_COMMAND@"

@ -30,6 +30,12 @@ link_directories(
)
##### Define where your dcop binary is ##########
set( DCOP_PATH "${BIN_INSTALL_DIR}" )
configure_file( dcop-path.h.cmake dcop-path.h )
##### headers ###################################
install( FILES

Loading…
Cancel
Save