Changeset 2438

Show
Ignore:
Timestamp:
03/21/08 23:42:35 (10 months ago)
Author:
edmanm
Message:

Fix a typo in VidaliaMacros?.cmake that would allow configuration to
continue even if windres.exe couldn't be found.

Location:
vidalia/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • vidalia/trunk/CHANGELOG

    r2435 r2438  
    88    likely start forcing DirPort to be disabled for bridges, and on by default 
    99    but optional for normal relays. (Ticket #337) 
     10  o Fix a typo in VidaliaMacros.cmake that would allow configuration to 
     11    continue even if windres.exe couldn't be found. 
    1012  o Update the version of Torbutton included in the OS X bundle to 
    1113    1.1.17-alpha, and actually include the bundle's uninstaller script. 
  • vidalia/trunk/cmake/VidaliaMacros.cmake

    r2374 r2438  
    3838  find_program(WIN32_WINDRES_EXECUTABLE  NAMES windres.exe ${QT_BINARY_DIR}) 
    3939  if (NOT WIN32_WINDRES_EXECUTABLE) 
    40     message(FATAL_ERR 
     40    message(FATAL_ERROR 
    4141      "Vidalia could not find windres. Please make sure Qt is installed and its bin directory is in your PATH environment variable." 
    4242    )