From 1a8f471cf9bc8b25715f03d0236ba1487a7a3a2f Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 17 Mar 2004 13:27:29 +0000 Subject: [PATCH] This is the correct fix: I misspelled ifneq as ifeq. This can't work, of course. git-svn-id: https://svn.dealii.org/trunk@8804 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-17/Makefile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/deal.II/examples/step-17/Makefile b/deal.II/examples/step-17/Makefile index 5fefc64e55..edd2f61d63 100644 --- a/deal.II/examples/step-17/Makefile +++ b/deal.II/examples/step-17/Makefile @@ -1,11 +1,12 @@ # $Id$ -###################################################################### +################################################################ # This example program will only work if PETSc is installed. If this # is not the case, then simply redefine the main targets to to nothing -ifeq ($(USE_CONTRIB_PETSC),yes) +ifneq ($(USE_CONTRIB_PETSC),yes) default: run: +endif # ################################################################ @@ -159,8 +160,3 @@ Makefile.dep: $(target).cc Makefile \ include Makefile.dep -################################################################ -# If PETSc is not installed nothing needs to be done. -else -default: -endif -- 2.39.5