Overview
Comment: | Added crcopy feature to pull crs from library -- similar to copy feature. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5cdb0ece85d54a3446d6079ce4d23c62 |
User & Date: | gawthrop@users.sourceforge.net on 1997-04-09 09:26:44 |
Other Links: | branch diff | manifest | tags |
Context
1997-04-09
| ||
10:18:26 | Initial revision check-in: 0bc65abe8d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:26:44 |
Added crcopy feature to pull crs from library -- similar to copy feature. check-in: 5cdb0ece85 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-03-22
| ||
17:13:03 | Fixed bug for port nos. > 1 digit! check-in: cdce8cf407 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [f02fdd77b7] to [cd55317663].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ # Revision 1.62 1997/03/20 17:48:50 peterg # Better _input.c file default. # # Revision 1.61 1997/03/20 16:53:01 peterg # Generates c files using include statements. # # Revision 1.60 1997/03/20 10:25:41 peterg | > > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ # Revision 1.63 1997/03/22 17:09:11 peterg # Fixed bug in recursive cr.txt generation. # Fixed bug in recursive sympar.txt generation. # # Revision 1.62 1997/03/20 17:48:50 peterg # Better _input.c file default. # # Revision 1.61 1997/03/20 16:53:01 peterg # Generates c files using include statements. # # Revision 1.60 1997/03/20 10:25:41 peterg |
︙ | ︙ | |||
370 371 372 373 374 375 376 377 378 379 380 381 382 383 | path_name=$MTTPATH/lib/examples fi echo Copying system $2 to here find $path_name -name "$2_*.*" -exec cp {} . \; fi exit fi # Save up the argument list in a file; but only if argument has changed ARGS=$4; #DIFF doesn't like empty files - so put a blank if empty if [ -z "$ARGS" ]; then ARGS=' '; fi | > > > > > > > > > > > > > > > > > > > | 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 | path_name=$MTTPATH/lib/examples fi echo Copying system $2 to here find $path_name -name "$2_*.*" -exec cp {} . \; fi exit fi # Copy CRs from the library if [ "$1" = "crcopy" ]; then # check that its not here already file_exists=`ls $2.cr 2> /dev/null` if [ -n "$file_exists" ]; then if [ "$quiet" != "quiet" ]; then echo $2.cr exists already - no action taken fi else path_name=$3 if [ -z "$path_name" ]; then path_name=$MTTPATH/lib/cr/r fi echo Copying CR $2 to here find $path_name -name "$2.cr" -exec cp {} . \; fi exit fi # Save up the argument list in a file; but only if argument has changed ARGS=$4; #DIFF doesn't like empty files - so put a blank if empty if [ -z "$ARGS" ]; then ARGS=' '; fi |
︙ | ︙ |