From: Guido Kanschat Date: Wed, 2 Mar 2005 23:01:50 +0000 (+0000) Subject: remove absolute path X-Git-Tag: v8.0.0~14553 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb0e3bc4ffcbae8235614e24b0f2fd2f0e8eb0fe;p=dealii.git remove absolute path git-svn-id: https://svn.dealii.org/trunk@9957 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/common/scripts/normalize.pl b/deal.II/common/scripts/normalize.pl index cfebbf403f..03037323fe 100644 --- a/deal.II/common/scripts/normalize.pl +++ b/deal.II/common/scripts/normalize.pl @@ -1,7 +1,7 @@ ###################################################################### # $Id$ # -# Copyright (C) 2001, 2003, the deal.II authors +# Copyright (C) 2001, 2003, 2005, the deal.II authors # # Remove insignificant volatile data from output files of tests # @@ -12,6 +12,11 @@ # small doubles ###################################################################### +# Remove absolute path names +$D = $0; +$D =~ s!common/scripts/normalize.pl!!; +s!$D!DEAL_II_PATH/!g; + # Remove JobID s/JobId.*//;