From 0b19c3d8d34f5610e5b884a85127c369244e219d Mon Sep 17 00:00:00 2001 From: maier Date: Thu, 28 Feb 2013 14:47:02 +0000 Subject: [PATCH] Bugfix git-svn-id: https://svn.dealii.org/branches/branch_cmake@28648 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/examples/GNUmakefile b/deal.II/examples/GNUmakefile index e15781958f..f51445e590 100644 --- a/deal.II/examples/GNUmakefile +++ b/deal.II/examples/GNUmakefile @@ -15,9 +15,9 @@ configure_examples: @echo "============ Configure all examples" @for f in $(steps);\ do\ - cd $$f ;\ + cd $(PWD)/$$f ;\ cmake .;\ - cd ..;\ + cd $(PWD);\ done .PHONY: configure_examples -- 2.39.5