Artifact fe36e405ae4a72f45ca200e2d264898399fe11a3fb20a54096f20f598d489063:
- Executable file
mttroot/mtt/bin/trans/apply_crs
— part of check-in
[980342cc25]
at
2004-09-03 08:36:57
on branch origin/master
— Checks for the existence of .pm files in either the working directory
or the mtt subdirectory (copied from cr/perl/). (user: geraint@users.sourceforge.net, size: 303) [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 -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} echo ";end;"