[Lxr-commits] CVS: lxr/scripts configure-lxr.pl,1.12,1.13
Brought to you by:
ajlittoz
From: Andre-Littoz <ajl...@us...> - 2013-01-23 16:48:51
|
Update of /cvsroot/lxr/lxr/scripts In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23875/scripts Modified Files: configure-lxr.pl Log Message: scripts/configure-lxr.pl: error on comparison operator Use eq instead of == for string comparison Index: configure-lxr.pl =================================================================== RCS file: /cvsroot/lxr/lxr/scripts/configure-lxr.pl,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- configure-lxr.pl 22 Jan 2013 16:59:52 -0000 1.12 +++ configure-lxr.pl 23 Jan 2013 16:48:48 -0000 1.13 @@ -253,7 +253,7 @@ print "\n"; } contextServer ($verbose); - if ('c' == $virtrootpolicy) { + if ('c' eq $virtrootpolicy) { print "${VTyellow}Reminder:${VTnorm} do not forget to implement your management in the following files:\n"; print "- ${confdir}/${VTbold}apache-lxrserver.conf${VTnorm} if using Apache,\n"; print "- ${confdir}/${VTbold}lighttpd-lxrserver.conf${VTnorm} if using lighttpd,\n"; |