test/jprt.config
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/test/jprt.config	Wed Sep 21 11:40:50 2011
--- new/test/jprt.config	Wed Sep 21 11:40:50 2011

*** 73,84 **** --- 73,84 ---- # Check input dirMustExist "${slashjava}" ALT_SLASH_JAVA # Uses 'uname -s', but only expect SunOS or Linux, assume Windows otherwise. osname=`uname -s` if [ "${osname}" = SunOS ] ; then + case "${osname}" in + SunOS ) # SOLARIS: Sparc or X86 osarch=`uname -p` if [ "${osarch}" = sparc ] ; then solaris_arch=sparc else
*** 98,121 **** --- 98,143 ---- fi fileMustExist "${make}" make # File creation mask umask 002 + ;; elif [ "${osname}" = Linux ] ; then + Linux | Darwin ) # Add basic paths path4sdk=/usr/bin:/bin:/usr/sbin:/sbin # Find GNU make make=/usr/bin/make fileMustExist "${make}" make umask 002 + ;; else + FreeBSD | OpenBSD ) + # Add basic paths + path4sdk=/usr/bin:/bin:/usr/sbin:/sbin + # Find GNU make + make=/usr/local/bin/gmake + fileMustExist "${make}" make + + umask 002 + ;; + + NetBSD ) + # Add basic paths + path4sdk=/usr/bin:/bin:/usr/sbin:/sbin + + # Find GNU make + make=/usr/pkg/bin/gmake + fileMustExist "${make}" make + + umask 002 + ;; + + * ) # Windows: Differs on CYGWIN vs. MKS. # We need to determine if we are running a CYGWIN shell or an MKS shell # (if uname isn't available, then it will be unix_toolset=unknown) unix_toolset=unknown
*** 152,163 **** --- 174,185 ---- # Convert path4sdk to cygwin style if [ "${unix_toolset}" = CYGWIN ] ; then path4sdk="`/usr/bin/cygpath -p ${path4sdk}`" fi + ;; + esac fi # Export PATH setting PATH="${path4sdk}" export PATH

test/jprt.config
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File