From 8038efbdf9cb1a0f9e73afc72e4214313ac87d20 Mon Sep 17 00:00:00 2001 From: hartmann Date: Tue, 23 Mar 2004 08:41:52 +0000 Subject: [PATCH] Strip intel_ of the compiler name git-svn-id: https://svn.dealii.org/trunk@8842 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index 564f4baf61..a454741abc 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -109,11 +109,16 @@ all-headers: done @rm -rf tmp-all-headers -# Generate a link to system specific test program output +# generate a link to system specific test program output. we create +# the name out of the system and compiler. unfortunately, for intel +# compilers, the variable $(GXX-VERSION) reads intel_icc7.1 (with +# proper version number), while for some historic reason we have named +# the directories in the results/ tree with just icc7.1 (i.e. without +# the preceding intel_). Thus, strip this part of the compiler name compare: cd results; $(MAKE) - ln -s results/$(TARGET)+$(GXX-VERSION) compare + ln -s results/$(TARGET)+$(GXX-VERSION:intel_%=%) compare resultname: @echo $(TARGET)+$(GXX-VERSION) -- 2.39.5