- Fix to find_file: this needs a path.

This commit is contained in:
ccremers 2007-01-09 08:54:00 +00:00
parent 41021072fa
commit 7898de5f15

View File

@ -17,7 +17,7 @@ endif (Source_OS STREQUAL Destination_OS)
message (STATUS "Locating platform specific file ${BuildScriptName}") message (STATUS "Locating platform specific file ${BuildScriptName}")
# Locate the file. If it exists, start it # Locate the file. If it exists, start it
find_file (BuildScriptFile "${BuildScriptName}") find_file (BuildScriptFile "${BuildScriptName}" .)
if (BuildScriptFile) if (BuildScriptFile)
# Execute the build script # Execute the build script
include (${BuildScriptName}) include (${BuildScriptName})