Changeset 492 for ThirdParty/ASL/branches
- Timestamp:
- Aug 9, 2007 3:45:06 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/ASL/branches/BSP/trunk/get.ASL
r386 r492 3 3 set -e 4 4 5 wgetcmd=wget 5 6 wgetcount=`which wget 2>/dev/null | wc -w` 6 7 if test ! $wgetcount = 1; then 7 8 echo "Utility wget not found in your PATH." 8 exit -1 9 if test `uname` = Darwin; then 10 wgetcmd=ftp 11 echo "Using ftp command instead." 12 else 13 exit -1 14 fi 9 15 fi 10 16 … … 15 21 rm -f solvers.tar 16 22 echo "Downloading the source code from www.netlib.org..." 17 wgetftp://www.netlib.org/ampl/solvers.tar23 $wgetcmd ftp://www.netlib.org/ampl/solvers.tar 18 24 19 25 echo "Unpacking the source code..."
Note: See TracChangeset
for help on using the changeset viewer.