https://bugzilla.novell.com/show_bug.cgi?id=804992 https://bugzilla.novell.com/show_bug.cgi?id=804992#c12 --- Comment #12 from Klaus Wagner <kgw@suse.com> 2013-08-14 12:44:29 UTC --- Re: Update candidate tomcat6-6.0.18-20.35.42.1 for SLE-11 SP3 and SP2 Here source files tomcat6-6.0.jasper.sh and tomcat6-6.0.wrapper were modified by adding the statement CLASSPATH="`echo ${CLASSPATH} | sed 's/::+/:/g; s/^://; s/:$//g'`" for sanitizing purposes. This does not work properly (sed does not regard + as a metacharacter). For instance, each of the following corrections would do instead: CLASSPATH="`echo ${CLASSPATH} | sed 's/::\+/:/g; s/^://; s/:$//g'`" CLASSPATH="`echo ${CLASSPATH} | sed 's/:::*/:/g; s/^://; s/:$//g'`" (cosmetics: also, s/:$// rather than s/:$//g is enough). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.