-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix build-namelist to work for both old and new version of Perl #15
Conversation
File was using syntax that older Perls accepted but Perl 5.20 rejected. This commit fixes that issue.
@jgfouca I recently have been making build-namelist modifications to create DIN_LOC_ROOT if it doesn't exist, and something I wanted to point out... each component has an identical copy of build-namelist. So, you should probably update all of these scripts. To find them you can |
@douglasjacobsen, Yeah I noticed that. For some reason, only models/drv/bld/build-namelist was broken for perl-5.20. I ran perl -c on all the others and they all passed. |
Fix build-namelist to work for both old and new version of Perl
Replaced use of C_NULL_PTR with integer return flag.
Bring in changes needed from cime2.0.13 fix cpl bug in restart write in driver/seq_io_mod.F90 workaround for cray compiler issue in shr_stream_mod Changes included with no effect on ACME edison build and pelayout changes in machines.
…ctic/DOD-shortterm-archive Update short-term archive setup for DoD machines
…hemMZT-MOSAIC-MAM5_AMIP Link MOSAIC nitrate and MAM5 strat sulfate treatment The changes are all related to aerosol parts and I don't see issues in this PR.
…30412 Update to E3SM master 20230412
Updated formatting of existing design docs for new doc setup and code highlighting Includes: * Update formatting for Broadcast design doc * Update formatting for Config design doc * Update formatting for DataTypes design doc * Update formatting for Halo design doc * Update formatting for Logging design doc * Update formatting for MachEnv design doc * Update formatting for TimeMgr design doc
Updated formatting of existing design docs for new doc setup and code highlighting Includes: * Update formatting for Broadcast design doc * Update formatting for Config design doc * Update formatting for DataTypes design doc * Update formatting for Halo design doc * Update formatting for Logging design doc * Update formatting for MachEnv design doc * Update formatting for TimeMgr design doc
File was using syntax that older Perls accepted but Perl 5.20 rejected.
This commit fixes that issue.