From: Wolfgang Bangerth Date: Wed, 16 Nov 2005 01:44:49 +0000 (+0000) Subject: # first check whether the given configuration is known at all. if not, X-Git-Tag: v8.0.0~12866 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=552d54a2313f979e6274058b21d162133066ea96;p=dealii.git # first check whether the given configuration is known at all. if not, # we don't know anything about the hierarchy we have to search, but we should # certainly search under the name of this configuration as well as the generic # one as well git-svn-id: https://svn.dealii.org/trunk@11769 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/hierarchy.pl b/tests/hierarchy.pl index 2c3c43ae3b..d5c106f317 100644 --- a/tests/hierarchy.pl +++ b/tests/hierarchy.pl @@ -50,9 +50,11 @@ $hierarchy{"x86_64-unknown-linux-gnu+gcc4.1"} = "x86_64-unknown-linux-gnu+gcc4.0 $configuration = $ARGV[0]; # first check whether the given configuration is known at all. if not, -# we can only resort to the generic files +# we don't know anything about the hierarchy we have to search, but we should +# certainly search under the name of this configuration as well as the generic +# one as well if (! defined $hierarchy{$configuration}) { - print "generic\n"; + print "$configuration generic\n"; exit; }