summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2009-06-12 16:20:46 -0300
committerDario Freddi <dario.freddi@collabora.co.uk>2010-09-20 17:03:46 +0200
commitc6b73f93bc923478492513f172a2fe0e655a8019 (patch)
treeafac10279b2c39b66f8de4dbbf7968d9a0fd8c90 /cmake
parentc32565d9017464b89686baa1d4784f4df283326c (diff)
cmake: Force decompression even if file already exists on make distcheck.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/TelepathyDist.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/TelepathyDist.cmake b/cmake/modules/TelepathyDist.cmake
index 9958447d..7e0af292 100644
--- a/cmake/modules/TelepathyDist.cmake
+++ b/cmake/modules/TelepathyDist.cmake
@@ -6,7 +6,7 @@ add_custom_target(dist cd ${CMAKE_SOURCE_DIR} &&
# setup make distcheck
add_custom_target(distcheck cd ${CMAKE_BINARY_DIR} &&
rm -rf ${PACKAGE_NAME}-${PACKAGE_VERSION} &&
- gzip -d ${PACKAGE_NAME}-${PACKAGE_VERSION}.tar.gz &&
+ gzip -df ${PACKAGE_NAME}-${PACKAGE_VERSION}.tar.gz &&
tar -xf ${PACKAGE_NAME}-${PACKAGE_VERSION}.tar &&
cd ${PACKAGE_NAME}-${PACKAGE_VERSION}/ &&
cmake . && make && make test && make doxygen-doc &&