Overview
| Comment: | Put -u back again ..... |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b9bae9373980792e355b52c540244ae0 |
| User & Date: | gawthrop@users.sourceforge.net on 1999-08-18 06:20:32.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1999-08-19
| ||
| 05:22:16 | To RCS prior to inplementing vector junctions check-in: 6d24f3efbb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1999-08-18
| ||
| 06:20:32 | Put -u back again ..... check-in: b9bae93739 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 06:17:55 | Modular form check-in: bcf49c0943 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt
from [d348fd52c1]
to [4482119964].
| ︙ | ︙ | |||
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, 1997,1998,1999 ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.210 1999/08/02 12:52:12 peterg ## Removed redundant .p copying. ## ## Revision 1.209 1999/07/27 03:50:13 peterg ## Fixed odeo.p bug. ## Fixed compound object bug in fig. ## | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996, 1997,1998,1999 ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.211 1999/08/17 04:10:38 peterg ## Removed the -u switch from cp - it doesnt work on non GNU cps ## ## Revision 1.210 1999/08/02 12:52:12 peterg ## Removed redundant .p copying. ## ## Revision 1.209 1999/07/27 03:50:13 peterg ## Fixed odeo.p bug. ## Fixed compound object bug in fig. ## |
| ︙ | ︙ | |||
1264 1265 1266 1267 1268 1269 1270 | if [ -n "$DIFF" ]; then mv $1_args.new $1_args.m fi # Tidy mode - operate in the directory MTT-work if [ "$tidy" = "tidy" ]; then mkdir -p MTT_work | | | 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 |
if [ -n "$DIFF" ]; then
mv $1_args.new $1_args.m
fi
# Tidy mode - operate in the directory MTT-work
if [ "$tidy" = "tidy" ]; then
mkdir -p MTT_work
cp -p -u Makefile *.* .* MTT_work # 2>/dev/null
cd MTT_work
if [ -z "$directory" ]; then
Directory=''
else
Directory=$directory/MTT_work
fi
|
| ︙ | ︙ | |||
1290 1291 1292 1293 1294 1295 1296 |
if [ "$3" != "hview" ]; then
if [ "$3" = "html" ]; then
echo Moving $1_$2
mv $1_$2 ..
else
echo Copying $1_$2.$3
| | | 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 |
if [ "$3" != "hview" ]; then
if [ "$3" = "html" ]; then
echo Moving $1_$2
mv $1_$2 ..
else
echo Copying $1_$2.$3
cp -p -u $1_$2.$3 ..
fi
if [ "$PLOTTYPE" = "multiple" ]; then
echo Copying $1_$2$__ARGS.ps
cp $1_$2$__ARGS.ps ..
fi
fi
|
| ︙ | ︙ |