diff --git a/cmake/modules/CMakeLists.txt b/cmake/modules/CMakeLists.txt
index 38821fff973eedddb0b92196af220be827891d8f..13e7e4e1e7efe4b16f6ebbadb3b79bf69ed5e31f 100644
--- a/cmake/modules/CMakeLists.txt
+++ b/cmake/modules/CMakeLists.txt
@@ -1,59 +1,2 @@
-cmake version 2.8.8
-------------------------------------------------------------------------------
-Introduction
-
-CMakeLists - Reference of available CMake custom modules.
-
-------------------------------------------------------------------------------
-Description
-
-The "cmake" executable is the CMake command-line interface.  It may be used
-to configure projects in scripts.  Project configuration settings may be
-specified on the command line with the -D option.  The -i option will cause
-cmake to interactively prompt for such settings.
-
-CMake is a cross-platform build system generator.  Projects specify their
-build process with platform-independent CMake listfiles included in each
-directory of a source tree with the name CMakeLists.txt.  Users build a
-project by using CMake to generate a build system for a native tool on their
-platform.
-
-------------------------------------------------------------------------------
-See Also
-
-.B ccmake(1), cpack(1), ctest(1), cmakecommands(1), cmakecompat(1),
-cmakemodules(1), cmakeprops(1), cmakevars(1)
-
-The following resources are available to get help using CMake:
-
-  Home Page
-       http://www.cmake.org
-
-       The primary starting point for learning about CMake.
-
-  Frequently Asked Questions
-       http://www.cmake.org/Wiki/CMake_FAQ
-
-       A Wiki is provided containing answers to frequently asked questions.
-
-  Online Documentation
-       http://www.cmake.org/HTML/Documentation.html
-
-       Links to available documentation may be found on this web page.
-
-  Mailing List
-       http://www.cmake.org/HTML/MailingLists.html
-
-       For help and discussion about using cmake, a mailing list is provided
-       at cmake@cmake.org.  The list is member-post-only but one may sign up
-       on the CMake web page.  Please first read the full documentation at
-       http://www.cmake.org before posting questions to the list.
-
-Summary of helpful links:
-
-  Home: http://www.cmake.org
-  Docs: http://www.cmake.org/HTML/Documentation.html
-  Mail: http://www.cmake.org/HTML/MailingLists.html
-  FAQ:  http://www.cmake.org/Wiki/CMake_FAQ
-
-
+file(GLOB modules *.cmake)
+install(FILES ${modules} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/cmake/modules)