diff options
author | Sven Gothel <[email protected]> | 2010-11-09 06:57:00 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-09 06:57:00 +0100 |
commit | 9321c9d861977d0ff0320d647959bb42b567b5d3 (patch) | |
tree | b6ea2bf4f0698735d8ec6d882bcde9066cd193c0 /deployment | |
parent | 904d059ddeb346bd07beaefb5542e2f9374378be (diff) |
gluegen's CODEBASE_TAG -> GLUEGEN_CODEBASE_TAG
Diffstat (limited to 'deployment')
-rwxr-xr-x | deployment/funcs_jnlp_relocate.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/deployment/funcs_jnlp_relocate.sh b/deployment/funcs_jnlp_relocate.sh index 2045a1f..b4dabb3 100755 --- a/deployment/funcs_jnlp_relocate.sh +++ b/deployment/funcs_jnlp_relocate.sh @@ -34,7 +34,10 @@ uri_esc=`echo $url | sed 's/\//\\\\\//g'` for j in $jnlpdir/*.jnlp ; do jb=`basename $j` echo "processing $j to $wsdir/$jb" - sed "s/CODEBASE_TAG/$uri_esc/g" \ + + sed -e "s/JOGL_CODEBASE_TAG/$uri_esc/g" \ + -e "s/GLUEGEN_CODEBASE_TAG/$uri_esc/g" \ + -e "s/DEMO_CODEBASE_TAG/$uri_esc/g" \ $j > $wsdir/$jb done |