[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r2438: Fix a typo in VidaliaMacros.cmake that would allow configura (in vidalia/trunk: . cmake)
Author: edmanm
Date: 2008-03-21 23:42:35 -0400 (Fri, 21 Mar 2008)
New Revision: 2438
Modified:
vidalia/trunk/CHANGELOG
vidalia/trunk/cmake/VidaliaMacros.cmake
Log:
Fix a typo in VidaliaMacros.cmake that would allow configuration to
continue even if windres.exe couldn't be found.
Modified: vidalia/trunk/CHANGELOG
===================================================================
--- vidalia/trunk/CHANGELOG 2008-03-22 03:35:55 UTC (rev 2437)
+++ vidalia/trunk/CHANGELOG 2008-03-22 03:42:35 UTC (rev 2438)
@@ -7,6 +7,8 @@
0.2.0.13-alpha, so stop forcing it on for bridges. At some point, we'll
likely start forcing DirPort to be disabled for bridges, and on by default
but optional for normal relays. (Ticket #337)
+ o Fix a typo in VidaliaMacros.cmake that would allow configuration to
+ continue even if windres.exe couldn't be found.
o Update the version of Torbutton included in the OS X bundle to
1.1.17-alpha, and actually include the bundle's uninstaller script.
o Updated Finnish and Swedish translations.
Modified: vidalia/trunk/cmake/VidaliaMacros.cmake
===================================================================
--- vidalia/trunk/cmake/VidaliaMacros.cmake 2008-03-22 03:35:55 UTC (rev 2437)
+++ vidalia/trunk/cmake/VidaliaMacros.cmake 2008-03-22 03:42:35 UTC (rev 2438)
@@ -37,7 +37,7 @@
if (WIN32)
find_program(WIN32_WINDRES_EXECUTABLE NAMES windres.exe ${QT_BINARY_DIR})
if (NOT WIN32_WINDRES_EXECUTABLE)
- message(FATAL_ERR
+ message(FATAL_ERROR
"Vidalia could not find windres. Please make sure Qt is installed and its bin directory is in your PATH environment variable."
)
endif(NOT WIN32_WINDRES_EXECUTABLE)