From db4b31f804a3e5062646fbcb5de63fed4c1822ef Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 16 Mar 2011 13:41:39 +0000 Subject: [PATCH] From Alan Dickinson,"I tested out my changes against the trunk and everything worked fine... except I noticed that the CMAKE_BUILD_POSTFIX is set incorrectly for a undefined or blank BUILD_TYPE. So here is the one line change to the CMakeLists.txt to rectify this omission." --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e5260445..80cd78237 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -558,7 +558,7 @@ ELSEIF(CMAKE_BUILD_TYPE MATCHES "RelWithDebInfo") ELSEIF(CMAKE_BUILD_TYPE MATCHES "Debug") SET(CMAKE_BUILD_POSTFIX "${CMAKE_DEBUG_POSTFIX}") ELSE() - SET(CMAKE_BUILD_POSTFIX "---") + SET(CMAKE_BUILD_POSTFIX "") ENDIF() IF(UNIX AND NOT WIN32)