Added dummy ICA scripts.

This commit is contained in:
Manuel Canales Esparcia 2006-04-08 17:01:40 +00:00
parent bfbd9275aa
commit ed0a1422c5
3 changed files with 18 additions and 0 deletions

7
common/do_ica_prep Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
# $Id$
set -e
echo "This is a placeholder for now"
exit

8
common/do_ica_work Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash
# $Id$
set -e
echo "This is a placeholder for now"
exit

View file

@ -461,6 +461,9 @@ fi
if [[ "$PWD" != "$JHALFSDIR" ]]; then if [[ "$PWD" != "$JHALFSDIR" ]]; then
cp $COMMON_DIR/makefile-functions $JHALFSDIR/ cp $COMMON_DIR/makefile-functions $JHALFSDIR/
if [[ "$RUN_ICA" != "0" ]]; then
cp $COMMON_DIR/do_ica_{prep,work} $JHALFSDIR/
fi
if [[ -n "$FILES" ]]; then if [[ -n "$FILES" ]]; then
# pushd/popd necessary to deal with mulitiple files # pushd/popd necessary to deal with mulitiple files
pushd $PACKAGE_DIR 1> /dev/null pushd $PACKAGE_DIR 1> /dev/null