Changeset 552


Ignore:
Timestamp:
11/27/13 21:12:16 (10 years ago)
Author:
davidb
Message:

Clearer separation of setup, devel, and local files

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/expeditee-devel.sh

    r551 r552  
     1
     2. expeditee-setup.sh
    13
    24
    3 which javac  >/dev/null 2>&1
     5#which javac  >/dev/null 2>&1
    46
    5 if [ $? != 0 ] ; then
    6   export JAVA_HOME="/cygdrive/c/Program Files/Java/jdk1.7.0_45"
    7   export PATH=$JAVA_HOME/bin/:$PATH
     7#if [ $? != 0 ] ; then
     8#  export JAVA_HOME="/cygdrive/c/Program Files/Java/jdk1.7.0_45"
     9#  export PATH=$JAVA_HOME/bin/:$PATH
    810
    9   echo "+ Set JAVA_HOME to $JAVA_HOME and updated path"
     11#  echo "+ Set JAVA_HOME to $JAVA_HOME and updated path"
    1012
    11   cygpath 2>/dev/null
    12   if [ $? != 0 ] ; then
    13     echo "Detected runing in Cygwin environment => Changing JAVA_HOME to Windows native format"
    14     export JAVA_HOME=`cygpath -w "$JAVA_HOME"`
    15   fi
    16 
    17 fi
     13#  cygpath 2>/dev/null
     14#  if [ $? != 0 ] ; then
     15#    echo "Detected runing in Cygwin environment => Changing JAVA_HOME to Windows native format"
     16#    export JAVA_HOME=`cygpath -w "$JAVA_HOME"`
     17#  fi
     18#
     19#fi
    1820
    1921
     
    2426echo "+ Set ANT_HOME to $ANT_HOME and updated path"
    2527
     28if test -e local-devel.sh ; then
     29    echo "Sourcing local-devel.sh"
     30    . ./local-devel.sh
     31  fi
     32fi
     33
    2634
    2735echo "-----"
    28 echo "To create an Expeditee distribution, type:"
     36echo "To compile Expeditee, type:"
    2937echo ""
    30 echo "  ant fresh_dist_exp"
    31 echo ""
    32 echo "or:"
    33 echo "  ant fresh_dist_apollo"
     38echo "  ant build"
     39echo "-----"
    3440
    35 echo ""
    3641
  • trunk/expeditee-setup.sh

    r551 r552  
    246246unset exptoenc
    247247
    248 if test -e local ; then
    249   if test -e local/setup.sh ; then
    250     echo "Sourcing local/setup.sh"
    251     cd local ; . ./setup.sh ; cd ..
    252   fi
    253 fi
    254 
    255 #which >/dev/null java 2>&1
     248
     249#which java >/dev/null 2>&1
    256250#
    257251#if [ $? != 0 ] ; then
Note: See TracChangeset for help on using the changeset viewer.