From ed0a1422c5e8659707ffee3f9b6bb1f7bddb6dfa Mon Sep 17 00:00:00 2001 From: Manuel Canales Esparcia Date: Sat, 8 Apr 2006 17:01:40 +0000 Subject: [PATCH] Added dummy ICA scripts. --- common/do_ica_prep | 7 +++++++ common/do_ica_work | 8 ++++++++ master.sh | 3 +++ 3 files changed, 18 insertions(+) create mode 100755 common/do_ica_prep create mode 100755 common/do_ica_work diff --git a/common/do_ica_prep b/common/do_ica_prep new file mode 100755 index 0000000..20637ac --- /dev/null +++ b/common/do_ica_prep @@ -0,0 +1,7 @@ +#!/bin/bash +# $Id$ +set -e + +echo "This is a placeholder for now" + +exit diff --git a/common/do_ica_work b/common/do_ica_work new file mode 100755 index 0000000..f0f9509 --- /dev/null +++ b/common/do_ica_work @@ -0,0 +1,8 @@ +#!/bin/bash +# $Id$ +set -e + +echo "This is a placeholder for now" + +exit + diff --git a/master.sh b/master.sh index 435e5cb..55905e7 100755 --- a/master.sh +++ b/master.sh @@ -461,6 +461,9 @@ fi if [[ "$PWD" != "$JHALFSDIR" ]]; then cp $COMMON_DIR/makefile-functions $JHALFSDIR/ + if [[ "$RUN_ICA" != "0" ]]; then + cp $COMMON_DIR/do_ica_{prep,work} $JHALFSDIR/ + fi if [[ -n "$FILES" ]]; then # pushd/popd necessary to deal with mulitiple files pushd $PACKAGE_DIR 1> /dev/null