From 947688b6e6b80d9e8a18bb5bbe3c889984726b5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 9 Feb 2020 18:48:41 +0100 Subject: [PATCH] Fix preservation of XMMS detection status in kopete/nowlistening plugin. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- kopete/plugins/nowlistening/ConfigureChecks.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kopete/plugins/nowlistening/ConfigureChecks.cmake b/kopete/plugins/nowlistening/ConfigureChecks.cmake index 33b0830a..c1780d68 100644 --- a/kopete/plugins/nowlistening/ConfigureChecks.cmake +++ b/kopete/plugins/nowlistening/ConfigureChecks.cmake @@ -13,7 +13,7 @@ if( WITH_XMMS ) find_program( XMMS_CONFIG xmms-config ) if( XMMS_CONFIG ) - set( HAVE_XMMS 1 ) + set( HAVE_XMMS 1 CACHE INTERNAL "" ) EXECUTE_PROCESS( COMMAND ${XMMS_CONFIG} '--cflags' OUTPUT_VARIABLE XMMS_INCLUDES ) EXECUTE_PROCESS( COMMAND ${XMMS_CONFIG} '--libs' OUTPUT_VARIABLE XMMS_LIBS ) else( )