From f43e38fa9f1019381588deba20f1c290a314f270 Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Tue, 23 Jul 2013 20:42:31 +0200 Subject: [PATCH] CMake: xvkbd: Check whether the list exists Instead of adding an empty element to the list, just check properly whether the list exists. --- development/autotests/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/development/autotests/CMakeLists.txt b/development/autotests/CMakeLists.txt index 13a5b1f0ad..c5fd05d2e3 100644 --- a/development/autotests/CMakeLists.txt +++ b/development/autotests/CMakeLists.txt @@ -6,7 +6,7 @@ if(Q_WS_X11) set(Missing) - set(XVFBDLIBS "") + set(XVFBDLIBS) # Make sure, the needed programs are in PATH find_program(PCREGREP_EXE "pcregrep") if (NOT PCREGREP_EXE) @@ -54,7 +54,9 @@ if(Q_WS_X11) endif() endforeach() endif() - list(REMOVE_DUPLICATES XVFBDLIBS) + if (XVFBDLIBS) + list(REMOVE_DUPLICATES XVFBDLIBS) + endif() if(Missing) message(STATUS "Missing libraries or programs to create xvkbd: ${Missing}") -- 2.39.2