diff options
author | Sven Gothel <[email protected]> | 2010-12-13 13:58:54 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-13 13:58:54 +0100 |
commit | 9f7148fdf3e26ea82cfb985d83eba22768eaf1d5 (patch) | |
tree | 899067c35caeefb0929e9afbaa1753571c75005c /deployment | |
parent | 506ca347787d0b698a4e773876b8bfd94d1754d6 (diff) |
Add JOAL
Diffstat (limited to 'deployment')
-rwxr-xr-x | deployment/funcs_jnlp_relocate.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/deployment/funcs_jnlp_relocate.sh b/deployment/funcs_jnlp_relocate.sh index 3c9a1b1..4b4f8ba 100755 --- a/deployment/funcs_jnlp_relocate.sh +++ b/deployment/funcs_jnlp_relocate.sh @@ -35,8 +35,10 @@ for j in $jnlpdir/*.jnlp ; do local jb=`basename $j` echo "processing $j to $wsdir/$jb" - sed -e "s/JOGL_CODEBASE_TAG/$uri_esc/g" \ + sed \ -e "s/GLUEGEN_CODEBASE_TAG/$uri_esc/g" \ + -e "s/JOAL_CODEBASE_TAG/$uri_esc/g" \ + -e "s/JOGL_CODEBASE_TAG/$uri_esc/g" \ -e "s/JOCL_CODEBASE_TAG/$uri_esc/g" \ $j > $wsdir/$jb done @@ -90,8 +92,10 @@ for j in $jnlpdir/*.jnlp ; do local jb=`basename $j` echo "processing $j to $demos/$jb" - sed -e "s/JOGL_CODEBASE_TAG/$uri_esc/g" \ + sed \ -e "s/GLUEGEN_CODEBASE_TAG/$uri_esc/g" \ + -e "s/JOAL_CODEBASE_TAG/$uri_esc/g" \ + -e "s/JOGL_CODEBASE_TAG/$uri_esc/g" \ -e "s/JOCL_CODEBASE_TAG/$uri_esc/g" \ -e "s/DEMO_CODEBASE_TAG/$uri_demos_esc/g" \ $j > $demos/$jb |