Skip to content

Commit 166bb44

Browse files
mwoehlke-kitwarejcfr
authored andcommitted
fix problem in CMake error message
Remove unmatched '${' in error message. CMake itself might not have minded, but it confuses the heck out of both katepart and vim syntax highlighting.
1 parent dbf0900 commit 166bb44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ if(QT4_FOUND)
6565
foreach(qtlib network opengl sql svg uitools webkit xml xmlpatterns)
6666
string(TOUPPER ${qtlib} qtlib_uppercase)
6767
if (NOT ${QT_QT${qtlib_uppercase}_FOUND})
68-
message(FATAL_ERROR "QT_QT${${qtlib_uppercase} *not* FOUND - Try to disable PythonQt_Wrap_Qt${qtlib}")
68+
message(FATAL_ERROR "QT_QT${qtlib_uppercase} *not* FOUND - Try to disable PythonQt_Wrap_Qt${qtlib}")
6969
endif()
7070
set(QT_USE_QT${qtlib_uppercase} ${PythonQt_Wrap_Qt${qtlib}})
7171
endforeach()

0 commit comments

Comments
 (0)