This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMake".
The branch, next has been updated via 6272e63327500bb7c3cb224a54b754fa9b53b5b2 (commit) via b8da1a1378a4e36d80bda0cd551cb27dcb0ec982 (commit) from b788fd6181d4fadd6fb837c53087dea116ca421f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6272e63327500bb7c3cb224a54b754fa9b53b5b2 commit 6272e63327500bb7c3cb224a54b754fa9b53b5b2 Merge: b788fd6 b8da1a1 Author: Eric Noulard <eric.noul...@gmail.com> AuthorDate: Mon Jan 31 11:27:25 2011 -0500 Commit: CMake Topic Stage <kwro...@kitware.com> CommitDate: Mon Jan 31 11:27:25 2011 -0500 Merge topic 'CPack-ComponentMoreZipTests' into next b8da1a1 Avoid foreach IN LISTS syntax which is not supported by CMake 2.6 http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b8da1a1378a4e36d80bda0cd551cb27dcb0ec982 commit b8da1a1378a4e36d80bda0cd551cb27dcb0ec982 Author: Eric NOULARD <eric.noul...@gmail.com> AuthorDate: Mon Jan 31 17:25:29 2011 +0100 Commit: Eric NOULARD <eric.noul...@gmail.com> CommitDate: Mon Jan 31 17:25:29 2011 +0100 Avoid foreach IN LISTS syntax which is not supported by CMake 2.6 diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index 5f0bf25..2c11919 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -572,9 +572,9 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=master -P ${CMake_SOURCE_DIR}/Utilities/ list(APPEND CWAYLST "IgnoreGroup") list(APPEND CWAYLST "AllInOne") list(APPEND CWAYLST "AllGroupsInOne") - foreach(CPackGen IN LISTS GENLST) + foreach(CPackGen ${GENLST}) set(CPackRun_CPackGen "-DCPackGen=${CPackGen}") - foreach(CPackComponentWay IN LISTS CWAYLST) + foreach(CPackComponentWay ${CWAYLST}) set(CPackRun_CPackComponentWay "-DCPackComponentWay=${CPackComponentWay}") ADD_TEST(CPackComponentsForAll-${CPackGen}-${CPackComponentWay} ${CMAKE_CTEST_COMMAND} --build-and-test ----------------------------------------------------------------------- Summary of changes: Tests/CMakeLists.txt | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- CMake _______________________________________________ Cmake-commits mailing list Cmake-commits@cmake.org http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits