1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
sys=$1
# check for the existence of CRs that we need
crs=''
for cr in `cat ${sys}_cr.txt`; do
if [ -f ${cr}.pm ]; then
crs="$crs $cr"
fi
done
# should be reading the output from ese_r2make
# on standard input
${MTT_LIB}/cr/perl/apply_cr.pl ${crs}
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
sys=$1
# check for the existence of CRs that we need
crs=''
for cr in `cat ${sys}_cr.txt`; do
if [ -f ${cr}.pm -o -f mtt/${cr}.pm ]; then
crs="$crs $cr"
fi
done
# should be reading the output from ese_r2make
# on standard input
${MTT_LIB}/cr/perl/apply_cr.pl ${crs}
|