summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2009-02-04 23:24:20 (GMT)
committerDavid Cole <david.cole@kitware.com>2009-02-04 23:24:20 (GMT)
commit3ad6aa6a98f82ff56025708920ca6c2853197d4c (patch)
tree3dbe78b78f8c8f95f98049122580d2fbf95d9b59 /Modules
parentd18ae05da1c303547161065d3030fc45838e1950 (diff)
downloadCMake-3ad6aa6a98f82ff56025708920ca6c2853197d4c.zip
CMake-3ad6aa6a98f82ff56025708920ca6c2853197d4c.tar.gz
CMake-3ad6aa6a98f82ff56025708920ca6c2853197d4c.tar.bz2
BUG: Add debug message calls to figure out ExternalProject test failure on AIX dashboard.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/UntarFile.cmake4
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}")