Artifact c893c6e23ba34ac06d3f42e5f03f883e1c2cd33d373871845f7c178c02923fa0:
- Executable file
mttroot/mtt/bin/trans/apply_crs
— part of check-in
[7ee00e6dc2]
at
2004-08-31 01:28:11
on branch origin/master
— Reads the contents of _cr.txt and adds CRs for which a cr.pm exists
to the argument list of apply_cr.pl, which modifies the standard stream. (user: geraint@users.sourceforge.net, size: 284) [annotate] [blame] [check-ins using] [more...]
#! /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}
echo ";end;"