[PVFS2-CVS]
commit by pcarns in pvfs2/maint/build: pvfs2-extract-make-msgs.pl
CVS commit program
cvs at parl.clemson.edu
Fri Feb 13 14:47:29 EST 2004
Update of /projects/cvsroot/pvfs2/maint/build
In directory parlweb:/tmp/cvs-serv15042
Modified Files:
pvfs2-extract-make-msgs.pl
Log Message:
work around some odd characters that end up in the make output, apparently
originating from statecomp
Index: pvfs2-extract-make-msgs.pl
===================================================================
RCS file: /projects/cvsroot/pvfs2/maint/build/pvfs2-extract-make-msgs.pl,v
diff -p -u -r1.3 -r1.4
--- pvfs2-extract-make-msgs.pl 16 Dec 2003 00:48:36 -0000 1.3
+++ pvfs2-extract-make-msgs.pl 13 Feb 2004 19:47:29 -0000 1.4
@@ -27,6 +27,12 @@ foreach $file (@files)
while (<>)
{
+ if (/^\.. /)
+ {
+ # pull off odd characters generated by statecomp hack
+ $_ =~ s/\..//g;
+ }
+
if (/^ CC/ ||
/^ SMC/ ||
/^ DEP/ ||
More information about the PVFS2-CVS
mailing list