| #!/bin/sh |
| |
| # intentionally named "shsource" to denote this is intended to |
| # be included in other sh files, with "source" command, not |
| # executed on its own. |
| |
| ######################################################## |
| |
| export PROJECT_HOME=${BUILD_HOME}/releng.control |
| |
| export PATH=${PATH}:${HOME}/bin:${ANT_HOME}/bin:${JAVA_HOME}/bin |
| |
| # project name is resolved dynamically, as CC runs |
| export LOG_DIR=${BUILD_HOME}/logs |
| |
| # need for some PPC or Linux issues |
| export JAVA_HIGH_ZIPFDS=500 |
| |
| # Spec java 1.4 as default vm to use if |
| # not otherwise specified. |
| # TODO: do we still need this? |
| export JAVA_HOME=${JAVA_4_HOME} |
| |
| # Set this to the relative path for the |
| # directory that keeps the downloaded drivers |
| # and pre-reqs |
| export LOCAL_PREREQS_CACHE=${BUILD_HOME}/downloads |
| |
| # We want everything in our processes to use UTC, even when we can't |
| # change the time or timezone on the build machine. |
| export TZ='UTC-0'; |
| |
| |
| export RELENG=webtools.maps/releng |
| export RELENGMAPS=webtools.maps |
| export RELENGJSF=webtools.maps/releng.jsf |
| export RELENGDALI=webtools.maps/releng.dali |
| export RELENGWTPBUILDER=webtools.releng/releng.wtpbuilder |
| |
| export BUILD_INITIALIZED="true" |
| |
| echo " " |
| echo " Project Home: ${PROJECT_HOME}" |
| echo " Build Home: ${BUILD_HOME}" |
| echo " DISPLAY: ${DISPLAY}" |
| echo " " |
| echo " JAVA_4_HOME: ${JAVA_4_HOME}" |
| echo " ${bootclasspath}" |
| echo " " |
| echo " JAVA_5_HOME: ${JAVA_5_HOME}" |
| echo " ${bootclasspath_15}" |
| echo " " |
| echo " ANT_HOME: ${ANT_HOME}" |
| echo " " |
| echo " PATH: ${PATH}" |
| echo " " |
| echo " BASEOS: ${BASEOS}" |
| echo " BASEWS: ${BASEWS}" |
| echo " BASEARCH: ${BASEARCH}" |
| echo " " |
| echo " LOCAL_BUILD_PROPERTIES_DIR: ${LOCAL_BUILD_PROPERTIES_DIR}" |
| echo " " |