Remove a stray globbing expression that is not necessary any more and that
indeed leads to a subtle issue when configuring in-source with
$ cmake .
In this case ./bundled/cmake_install.cmake was accidentally picked up
leading to a file permission error if CMAKE_INSTALL_PREFIX was left at the
default /usr/local
## ---------------------------------------------------------------------
## $Id$
##
-## Copyright (C) 2012 - 2013 by the deal.II authors
+## Copyright (C) 2012 - 2014 by the deal.II authors
##
## This file is part of the deal.II library.
##
# Include information about bundled libraries:
#
IF(DEAL_II_HAVE_BUNDLED_DIRECTORY)
- FILE(GLOB _check_files "bundled/*.cmake")
- LIST(SORT _check_files)
- FOREACH(_file ${_check_files})
- MESSAGE(STATUS "")
- MESSAGE(STATUS "Include ${_file}")
- INCLUDE(${_file})
- ENDFOREACH()
+ SET(_file ${CMAKE_SOURCE_DIR}/bundled/setup_bundled.cmake)
+ MESSAGE(STATUS "")
+ MESSAGE(STATUS "Include ${_file}")
+ INCLUDE(${_file})
ENDIF()
#
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams