diff options
author | David Cole <david.cole@kitware.com> | 2009-02-04 23:24:20 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2009-02-04 23:24:20 (GMT) |
commit | 3ad6aa6a98f82ff56025708920ca6c2853197d4c (patch) | |
tree | 3dbe78b78f8c8f95f98049122580d2fbf95d9b59 | |
parent | d18ae05da1c303547161065d3030fc45838e1950 (diff) | |
download | CMake-3ad6aa6a98f82ff56025708920ca6c2853197d4c.zip CMake-3ad6aa6a98f82ff56025708920ca6c2853197d4c.tar.gz CMake-3ad6aa6a98f82ff56025708920ca6c2853197d4c.tar.bz2 |
BUG: Add debug message calls to figure out ExternalProject test failure on AIX dashboard.
-rw-r--r-- | Modules/UntarFile.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/UntarFile.cmake b/Modules/UntarFile.cmake index 9aa218f..0b0e403 100644 --- a/Modules/UntarFile.cmake +++ b/Modules/UntarFile.cmake @@ -34,6 +34,9 @@ endif() get_filename_component(filename "${filename}" ABSOLUTE) get_filename_component(tmp "${tmp}" ABSOLUTE) get_filename_component(directory "${directory}" ABSOLUTE) +message(STATUS "filename='${filename}'") +message(STATUS "tmp='${tmp}'") +message(STATUS "directory='${directory}'") # Prepare a space for untarring: @@ -44,6 +47,7 @@ while(EXISTS "${tmp}/untar${i}") math(EXPR i "${i} + 1") endwhile() set(ut_dir "${tmp}/untar${i}") +message(STATUS "ut_dir='${ut_dir}'") file(MAKE_DIRECTORY "${ut_dir}") |