Show
Ignore:
Timestamp:
05/08/08 09:50:29 (19 months ago)
Author:
jon
Message:

bash on solaris doesnt like $() syntax. use backticks intead

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/ant

    r1598 r1601  
    4343 
    4444  # Otherwise use whatever is in $PATH 
    45   result=$(which ant 2>/dev/null) 
     45  result=`which ant 2>/dev/null` 
    4646  if [ -z "$result" ]; then 
    4747    echo "Could not find ant. You need to install it. See http://ant.apache.org/ for details." >&2 
     
    5252} 
    5353 
    54 ant_exec=$(find_ant) 
     54ant_exec=`find_ant` 
    5555n=$? 
    5656if [ $n -ne 0 ]; then