From 36e4c61f659f0d6687ce6acbd6926148a6ea85cb Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 28 Oct 2010 14:51:13 +0000 Subject: [PATCH] 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 --- deal.II/common/Make.global_options.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 -- 2.39.5