From: Vincent van Ravesteijn Date: Tue, 23 Jul 2013 18:42:31 +0000 (+0200) Subject: CMake: xvkbd: Check whether the list exists X-Git-Tag: 2.1.0beta2~215 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f43e38fa9f1019381588deba20f1c290a314f270;p=features.git CMake: xvkbd: Check whether the list exists Instead of adding an empty element to the list, just check properly whether the list exists. --- 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}")