Added dummy ICA scripts.
This commit is contained in:
parent
bfbd9275aa
commit
ed0a1422c5
3 changed files with 18 additions and 0 deletions
7
common/do_ica_prep
Executable file
7
common/do_ica_prep
Executable 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
8
common/do_ica_work
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
# $Id$
|
||||
set -e
|
||||
|
||||
echo "This is a placeholder for now"
|
||||
|
||||
exit
|
||||
|
|
@ -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
|
||||
|
|
Reference in a new issue