[Lxr-commits] CVS: lxr/tests TestRunner.pl,1.1,1.2
Brought to you by:
ajlittoz
From: AdrianIssott <adr...@us...> - 2009-04-08 20:49:34
|
Update of /cvsroot/lxr/lxr/tests In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2398/tests Modified Files: TestRunner.pl Log Message: Fix for bug 2745292 (LXR CGI Scripts Fail on Windows) - changed all occurrences of "#!/usr/bin/perl T" to be "#!perl T" and rely on the path to find the perl executable. Index: TestRunner.pl =================================================================== RCS file: /cvsroot/lxr/lxr/tests/TestRunner.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- TestRunner.pl 4 Dec 2004 23:21:59 -0000 1.1 +++ TestRunner.pl 8 Apr 2009 20:49:21 -0000 1.2 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!perl -T use strict; |