Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Webtools Releng
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
webtools
Releng
Webtools Releng
Commits
7542944a
Commit
7542944a
authored
18 years ago
by
david_williams
Browse files
Options
Downloads
Patches
Plain Diff
VM jar names are vendor specific
parent
6f8a2690
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
releng.control/ant.sh
+1
-3
1 addition, 3 deletions
releng.control/ant.sh
releng.control/commonVariations.sh
+25
-6
25 additions, 6 deletions
releng.control/commonVariations.sh
with
26 additions
and
9 deletions
releng.control/ant.sh
+
1
−
3
View file @
7542944a
...
...
@@ -34,9 +34,7 @@ case "$javaversion" in
*
ppc
*
)
ibmjvm
=
true
;;
esac
#values of the bootclasspath attribute used in ant javac calls.
bootclasspath
=
"
$JAVA_HOME
/jre/lib/rt.jar:
$JAVA_HOME
/jre/lib/jsse.jar"
bootclasspath_15
=
"
$JAVA5_HOME
/jre/lib/rt.jar"
buildPaths
=
"-DJ2SE-1.4=
${
bootclasspath
}
-DJ2SE-1.5=
${
bootclasspath_15
}
"
...
...
This diff is collapsed.
Click to expand it.
releng.control/commonVariations.sh
+
25
−
6
View file @
7542944a
...
...
@@ -9,11 +9,30 @@ export BUILD_HOME=/shared/webtools
export
DISPLAY
=
127.0.0.1:1.0
export
JAVA_4_DIR
=
"IBMJava2-ppc-142"
export
JAVA_5_DIR
=
"ibm-java2-ppc-50"
export
BUILD_INITIALIZED
=
"true"
# values of the bootclasspath attribute used in ant javac calls.
# the names of these jars are VM vendor specific. the first set
# below, commented out, are typical for sun VM's. The
# second set are for IBM's VM's ... which is what we use
# on the PPC machine, so we'll leave that as the defaults
# in this file.
#export bootclasspath="${JAVA_HOME}/jre/lib/rt.jar:$JAVA_HOME/jre/lib/jsse.jar"
#export bootclasspath_15="${JAVA5_HOME}/jre/lib/rt.jar"
export
bootclasspath
=
"
${
JAVA_HOME
}
/jre/lib/core.jar:
$JAVA_HOME
/jre/lib/ibmjsseprovider.jar:
$JAVA_HOME
/jre/lib/xml.jar"
export
bootclasspath_15
=
"
${
JAVA5_HOME
}
/jre/lib/core.jar:
$JAVA5_HOME
/jre/lib/vm.jar:
$JAVA_HOME
/jre/lib/xml.jar"
export
BUILD_INITIALIZED
=
"true"
echo
"Project Home:
${
PROJECT_HOME
}
"
echo
"Build Home:
${
BUILD_HOME
}
"
echo
"DISPLAY:
${
DISPLAY
}
"
echo
"JAVA_4_DIR:
${
JAVA_4_DIR
}
"
echo
"JAVA_5_DIR:
${
JAVA_5_DIR
}
"
echo
" "
echo
" Project Home:
${
PROJECT_HOME
}
"
echo
" Build Home:
${
BUILD_HOME
}
"
echo
" DISPLAY:
${
DISPLAY
}
"
echo
" "
echo
" JAVA_4_DIR:
${
JAVA_4_DIR
}
"
echo
"
${
bootclasspath
}
"
echo
" "
echo
" JAVA_5_DIR:
${
JAVA_5_DIR
}
"
echo
"
${
bootclasspath_15
}
"
echo
" "
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment