Skip to content

Commit

Permalink
scripts/ccpp_prebuild.py: write html and latex variable tables to bui…
Browse files Browse the repository at this point in the history
…ld directory
  • Loading branch information
climbfuji committed Oct 10, 2019
1 parent e742528 commit 1358ecf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/ccpp_prebuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ def import_config(configfile, builddir):
config['module_include_file'] = ccpp_prebuild_config.MODULE_INCLUDE_FILE
config['fields_include_file'] = ccpp_prebuild_config.FIELDS_INCLUDE_FILE
config['host_model'] = ccpp_prebuild_config.HOST_MODEL_IDENTIFIER
config['html_vartable_file'] = ccpp_prebuild_config.HTML_VARTABLE_FILE
config['latex_vartable_file'] = ccpp_prebuild_config.LATEX_VARTABLE_FILE
config['html_vartable_file'] = ccpp_prebuild_config.HTML_VARTABLE_FILE.format(build_dir=builddir)
config['latex_vartable_file'] = ccpp_prebuild_config.LATEX_VARTABLE_FILE.format(build_dir=builddir)
# For static build: location of static API file, and shell script to source
config['static_api_dir'] = ccpp_prebuild_config.STATIC_API_DIR.format(build_dir=builddir)
config['static_api_srcfile'] = ccpp_prebuild_config.STATIC_API_SRCFILE.format(build_dir=builddir)
Expand Down

0 comments on commit 1358ecf

Please sign in to comment.