2007-07-21 01:36:11 +04:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
2007-07-26 02:28:04 +04:00
|
|
|
# Copyright (c) 2004-2007 The Trustees of the University of Tennessee.
|
2007-07-21 01:36:11 +04:00
|
|
|
# All rights reserved.
|
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# Specific to this module
|
|
|
|
|
|
|
|
PARAM_INIT_FILE=pml_v.c
|
|
|
|
PARAM_CONFIG_FILES="Makefile"
|
|
|
|
|
|
|
|
|
2007-09-12 22:46:37 +04:00
|
|
|
# Operate on the vprotocol framework directory to detect and configure all
|
|
|
|
# the vprotocols.
|
|
|
|
(
|
|
|
|
cd $pd_ompi_topdir
|
|
|
|
mv "$mca_no_config_env_file" "$mca_no_config_env_file.bak"
|
|
|
|
mv "$mca_m4_config_env_file" "$mca_m4_config_env_file.bak"
|
2008-01-29 09:07:57 +03:00
|
|
|
process_framework $pd_dir/mca/vprotocol $rg_cwd v vprotocol
|
2007-09-12 22:46:37 +04:00
|
|
|
mv "$mca_no_config_env_file.bak" "$mca_no_config_env_file"
|
|
|
|
mv "$mca_m4_config_env_file.bak" "$mca_m4_config_env_file"
|
|
|
|
)
|