From b83bd59a4f9c903dfb7c2b5c3d29df1472498853 Mon Sep 17 00:00:00 2001 From: gerard ketefian Date: Sat, 24 Oct 2020 04:17:51 -0500 Subject: [PATCH] Remove link_fix.sh from build system. --- src/build_all.sh | 4 ---- src/link_fix.sh | 50 ------------------------------------------------ 2 files changed, 54 deletions(-) delete mode 100755 src/link_fix.sh diff --git a/src/build_all.sh b/src/build_all.sh index 110e020f30..58087dbda1 100755 --- a/src/build_all.sh +++ b/src/build_all.sh @@ -115,8 +115,4 @@ echo;echo " .... Installing executables .... " echo;echo " .... Installation finished .... " echo;echo " .... Linking fix files .... " -./link_fix.sh - -echo;echo " .... Linking fix files finished .... " - exit 0 diff --git a/src/link_fix.sh b/src/link_fix.sh deleted file mode 100755 index 7a1c2d69c8..0000000000 --- a/src/link_fix.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -set -xeu - -source ./machine-setup.sh > /dev/null 2>&1 - -pwd=$(pwd -P) - -# prepare fixed data directories - -RGNL_WFLOW_DIR=$( pwd )/.. -cd ${RGNL_WFLOW_DIR} -mkdir -p fix/fix_fv3 -cd fix - -if [ ${target} == "theia" ]; then - - ln -sfn /scratch4/NCEPDEV/global/save/glopara/git/fv3gfs/fix/fix_am fix_am - -elif [ ${target} == "hera" ]; then - - ln -sfn /scratch1/NCEPDEV/global/glopara/fix/fix_am fix_am - -elif [[ ${target} == "wcoss_dell_p3" || ${target} == "wcoss" || ${target} == "wcoss_cray" ]]; then - - ln -sfn /gpfs/dell2/emc/modeling/noscrub/emc.campara/fix_fv3cam fix_am - -elif [ ${target} == "odin" ]; then - - ln -sfn /scratch/ywang/fix/theia_fix/fix_am fix_am - -elif [ ${target} == "stampede" ]; then - - ln -sfn /work/00315/tg455890/stampede2/regional_fv3/fix_am fix_am - -elif [ ${target} == "cheyenne" ]; then - - ln -sfn /glade/p/ral/jntp/GMTB/FV3GFS_V1_RELEASE/fix/fix_am fix_am - -elif [ ${target} == "jet" ]; then - - ln -sfn /lfs3/projects/hpc-wof1/ywang/regional_fv3/fix/fix_am fix_am - -else - - echo "Unknown target " ${target} - exit 1 - -fi - -exit