Changeset 1601 for trunk/ProjectFortress/ant
- Timestamp:
- 05/08/08 09:50:29 (19 months ago)
- Files:
-
- 1 modified
-
trunk/ProjectFortress/ant (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ProjectFortress/ant
r1598 r1601 43 43 44 44 # Otherwise use whatever is in $PATH 45 result= $(which ant 2>/dev/null)45 result=`which ant 2>/dev/null` 46 46 if [ -z "$result" ]; then 47 47 echo "Could not find ant. You need to install it. See http://ant.apache.org/ for details." >&2 … … 52 52 } 53 53 54 ant_exec= $(find_ant)54 ant_exec=`find_ant` 55 55 n=$? 56 56 if [ $n -ne 0 ]; then

