Changeset 4081
- Timestamp:
- Jul 10, 2019 2:34:11 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palmbuild
r3756 r4081 27 27 # ----------------- 28 28 # $Id$ 29 # bugfix for executing module commands and for interpreting linker options 30 # on local machines 31 # 32 # 3756 2019-02-20 11:24:32Z suehring 29 33 # Disable compilation of postprocessing tool for surface output, until 30 34 # crashes with unexpected segmentation faults with intel compiler are solved. … … 754 758 if [[ "$login_init_cmd" != "" ]] 755 759 then 756 $login_init_cmd760 eval $login_init_cmd 757 761 fi 758 762 759 763 if [[ "$module_commands" != "" ]] 760 764 then 761 $module_commands 762 fi 763 765 eval $module_commands 766 fi 767 768 # next is required to evaluate environment variables or commands used in the linker option 769 eval linker_options=\"$linker_options\" 764 770 765 771 # CREATE MAKE-DEPOSITORY, IF IT DOES NOT EXIST … … 840 846 fi 841 847 848 linker_options=\"eval $linker_options\" 849 842 850 make $make_options PROG=$program_name F90=$compiler_name COPT="$cpp_options" F90FLAGS="$compiler_options" LDFLAGS="$linker_options" 2>&1 | tee ${configuration_identifier}_last_make_protocol 843 851 … … 933 941 echo " *** execute \"make\" on local host" 934 942 fi 935 [[ "$login_init_cmd" != "" ]] && $login_init_cmd 936 [[ "$module_commands" != "" ]] && $module_commands 943 [[ "$login_init_cmd" != "" ]] && eval $login_init_cmd 944 [[ "$module_commands" != "" ]] && eval $module_commands 945 946 # next is required to evaluate environment variables or commands used in the linker option 947 eval linker_options=\"$linker_options\" 937 948 938 949 make $make_options PROG=$program_name F90=$compiler_name COPT="$cpp_options" F90FLAGS="$compiler_options" LDFLAGS="$linker_options"
Note: See TracChangeset
for help on using the changeset viewer.