From 2f76365ac8f3d54c46b061d21e4d204195dd96ec Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Sat, 30 Mar 2013 19:43:06 +0000 Subject: [PATCH] fixed wrong string concatenation --- code/Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/Makefile b/code/Makefile index 2bf976d4a..6ef85e6a2 100644 --- a/code/Makefile +++ b/code/Makefile @@ -146,8 +146,7 @@ COMPILE_OPTIONS_ifort +=-fpp\ -ftz\ -assume byterecl ifneq "$(FASTBUILD)" "YES" -COMPILE_OPTIONS_ifort +=$(COMPILE_OPTIONS_ifort)\ - -diag-enable sc3\ +COMPILE_OPTIONS_ifort +=-diag-enable sc3\ -diag-disable 5268\ -warn declarations\ -warn general\ @@ -212,8 +211,7 @@ DEBUG_OPTIONS_ifort :=-g\ # stack: COMPILE_OPTIONS_gfortran :=-xf95-cpp-input ifneq "$(FASTBUILD)" "YES" -COMPILE_OPTIONS_gfortran +=$(COMPILE_OPTIONS_gfortran)\ - -ffree-line-length-132\ +COMPILE_OPTIONS_gfortran +=-ffree-line-length-132\ -fimplicit-none\ -fmodule-private\ -Wall\