From: bangerth Date: Thu, 28 Oct 2010 14:51:13 +0000 (+0000) Subject: Move the path few people will use for include files to the end of the X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc1b2843de199a070edb9bcb1a58591d48f46a8e;p=dealii-svn.git Move the path few people will use for include files to the end of the list because it requires opening files that don't exist before we move on to try the next path. git-svn-id: https://svn.dealii.org/trunk@22533 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/common/Make.global_options.in b/deal.II/common/Make.global_options.in index b5f3abb9b0..abea443107 100644 --- a/deal.II/common/Make.global_options.in +++ b/deal.II/common/Make.global_options.in @@ -295,10 +295,11 @@ include-path-mumps = $(DEAL_II_MUMPS_DIR)/include # include paths as command line flags. while compilers allow a space between # the '-I' and the actual path, we also send these flags to the # make_dependencies program that doesn't support the extra space. -INCLUDE = -I$D/include -I$D/include/deal.II \ +INCLUDE = -I$D/include/deal.II \ @CPPFLAGS@ @TECPLOT_INCLUDE_DIR@ \ @UMFPACK_INCLUDE_DIR@ @HSL_INCLUDE_DIR@ \ - -I$D/contrib + -I$D/contrib \ + -I$D/include # add PETSc, SLEPSc, and Trilinos include paths if necessary. this rule # (and the one further down below to get correct flags) should eventually