File: diffall

package info (click to toggle)
xtrkcad 20060529-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,200 kB
  • ctags: 7,866
  • sloc: ansic: 74,430; makefile: 1,127; sh: 298
file content (37 lines) | stat: -rwxr-xr-x 618 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
if [ $# -lt 1 ] ; then
	echo "Usage: checkall <RLSE> [<home>]"
	exit 1
fi
RLSE=$1
HOMEDIR=$HOME
if [ $# -eq 2 ] ; then
	HOMEDIR=$2
fi
cd ${HOMEDIR}/xtrkcad/$RLSE
for d in bin help lib lib/params lib/demos lib/examples tools ; do
	echo === $d
	( cd $d
	for f in `make rcssrc` ; do
		if rcsdiff -q -r$RLSE -r1. $f > /dev/null ; then
			true
		else
			echo $d/$f diffs
		fi
	done
	)
done
cd ${HOMEDIR}/wlib/$RLSE
for d in include mswlib test gtklib ; do
	echo === $d
	( cd $d
	for f in `make rcssrc` ; do
		if rcsdiff -q -r$RLSE -r1. $f > /dev/null ; then
			true
		else
			echo $d/$f diffs
		fi
	done
	)
done