Overview
Comment: | Corrected MTT_LIB paths |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
aa44f387406b16188babbe98447612a0 |
User & Date: | gawthrop@users.sourceforge.net on 2000-10-03 12:13:51 |
Other Links: | branch diff | manifest | tags |
Context
2000-10-03
| ||
12:14:25 | Version 4.8 check-in: 09f554ef06 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:13:51 | Corrected MTT_LIB paths check-in: aa44f38740 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:12:14 | New path structure to account for three way split in mtt tree check-in: 4c10000b36 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [a596cc82fa] to [307441e514].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.268 2000/09/27 16:15:55 peterg ## Now sh (as opposed to bash) compatible - fixed dat22dat again ## ## Revision 1.267 2000/09/21 10:08:30 peterg ## Version 4.7.1 - bug in odes.dat representation fixed in dat22dat ## ## Revision 1.266 2000/09/19 07:47:38 peterg | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.269 2000/09/30 14:12:03 peterg ## Fixed bug with no-parameter systems - changed mtt_txt2m and mtt_m2p ## ## Revision 1.268 2000/09/27 16:15:55 peterg ## Now sh (as opposed to bash) compatible - fixed dat22dat again ## ## Revision 1.267 2000/09/21 10:08:30 peterg ## Version 4.7.1 - bug in odes.dat representation fixed in dat22dat ## ## Revision 1.266 2000/09/19 07:47:38 peterg |
︙ | ︙ | |||
1140 1141 1142 1143 1144 1145 1146 | if [ "$1" = "help" ]; then mtt_help $2 $3 exit fi if [ "$1" = "hinfo" ] && [$2 = ""]; then mtt_check_var "$HTMLVIEW" HTMLVIEW | | | | | | 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 | if [ "$1" = "help" ]; then mtt_help $2 $3 exit fi if [ "$1" = "hinfo" ] && [$2 = ""]; then mtt_check_var "$HTMLVIEW" HTMLVIEW (cd $MTT_DOC/; make --silent mtt.html) echo Invoking $HTMLVIEW (cd $MTT_DOC; $HTMLVIEW ./mtt.html)& exit fi if [ "$1" = "manual" ] && [$2 = ""]; then mtt_check_var "$PDFVIEW" PDFVIEW (cd $MTT_DOC/; make --silent mtt.pdf) echo Invoking $PDFVIEW $PDFVIEW $MTT_DOC/mtt.pdf & exit fi if [ $1 = "find" ]&& [$3 = ""]; then mtt_find $MTT_COMPONENTS $2 find_status=$? if [ $find_status = "1" ]; then |
︙ | ︙ | |||
1311 1312 1313 1314 1315 1316 1317 | fi # Copy systems from the example library if [ "$1" = "copy" ]; then #set up source and destination dirs source=$3 if [ -z "$source" ]; then | | | | 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 | fi # Copy systems from the example library if [ "$1" = "copy" ]; then #set up source and destination dirs source=$3 if [ -z "$source" ]; then source=$MTT_Examples fi destination=$4 if [ -z "$destination" ]; then destination=$2 fi # check that its not here already file_exists=`ls $destination/$2_abg.fig 2> /dev/null` if [ -n "$file_exists" ]; then if [ "$quiet" != "quiet" ]; then echo System $2 exists already - no action taken fi else source=$3 if [ -z "$source" ]; then source=$MTT_EXAMPLES fi destination=$4 if [ -z "$destination" ]; then destination=$2 fi echo Copying system $2 from $source into directory $destination find $source -name "$2" -exec cp -rf {} . \; |
︙ | ︙ | |||
1395 1396 1397 1398 1399 1400 1401 | if [ -n "$file_exists" ]; then if [ "$quiet" != "quiet" ]; then echo $2.cr or $2_cr.r exists already - no action taken fi else path_name=$3 if [ -z "$path_name" ]; then | | | 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 | if [ -n "$file_exists" ]; then if [ "$quiet" != "quiet" ]; then echo $2.cr or $2_cr.r exists already - no action taken fi else path_name=$3 if [ -z "$path_name" ]; then path_name=$MTT_LIB/cr/r fi echo Copying CR $2 to here from $3 find $path_name -name "$2.cr" -exec cp {} . \; fi exit fi |
︙ | ︙ |