diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-10-16 19:39:12 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-10-16 19:39:24 +0200 |
commit | b12000555e93cf620d53d321ef637912535b66bb (patch) | |
tree | 6fcec9ad78032c25c0d786070336ca5175958a0c /ConfigureChecks.cmake | |
parent | bd93d7599e15a265d9ab4af71883afd5f9e82a96 (diff) | |
download | k3b-b12000555e93cf620d53d321ef637912535b66bb.tar.gz k3b-b12000555e93cf620d53d321ef637912535b66bb.zip |
cmake: Fix FTBFS due to artsc includes
This relates to bug 2714
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 1602d89a8fda0eeec793ba2205a152d8ddd898e2)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 3ffcde3..9466c7c 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -108,9 +108,9 @@ endif( ) ##### arts ###################################### if( WITH_ARTS ) - pkg_search_module( ARTS arts ) + pkg_search_module( ARTS artsc ) if( NOT ARTS_FOUND ) - tde_message_fatal( "aRts is requested, but was not found on your system" ) + tde_message_fatal( "aRtsC is requested, but was not found on your system" ) endif( ) endif( ) |