[Lxr-commits] CVS: lxr/lib/LXR/Files CVS.pm,1.48,1.49
Brought to you by:
ajlittoz
From: Andre-Littoz <ajl...@us...> - 2013-09-27 09:53:28
|
Update of /cvsroot/lxr/lxr/lib/LXR/Files In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30680/lib/LXR/Files Modified Files: CVS.pm Log Message: CVS.pm: fix for bug #246 Check for rcsdiff version should be done against rcsdiff insted of diff Index: CVS.pm =================================================================== RCS file: /cvsroot/lxr/lxr/lib/LXR/Files/CVS.pm,v retrieving revision 1.48 retrieving revision 1.49 diff -u -d -r1.48 -r1.49 --- CVS.pm 21 Sep 2013 12:54:52 -0000 1.48 +++ CVS.pm 27 Sep 2013 09:53:25 -0000 1.49 @@ -56,7 +56,7 @@ # the rcsdiff command (used in getdiff) uses parameters only supported by GNU diff $ENV{'PATH'} = $self->{'path'}; - if (index (`diff --version 2>/dev/null`, 'GNU') >= 0) { + if (index (`rcsdiff --version 2>/dev/null`, 'GNU') >= 0) { $gnu_diff = 1; } else { $gnu_diff = 0; |