Message5611
In the Linux jython script (under src/shell/jython in SVN), line 32 uses this command:
if expr "$link" : '^/' > /dev/null; then
The '^' here is redundant, because expr implicitly matches from the beginning of the string. On some systems, like my RHEL 5.4 system, this produces a warning on the command line:
[rshaffer@rshaffer-dev1 ~]$ jython
expr: warning: unportable BRE: `^/': using `^' as the first character
of the basic regular expression is not portable; it is being ignored
It doesn't hurt anything, but the warning is ugly, and it's easy to fix. Simply remove the '^' character from the regex.
-Richard |
|
Date |
User |
Action |
Args |
2010-03-31 18:29:22 | rshaffer@vmware.com | set | recipients:
+ rshaffer@vmware.com |
2010-03-31 18:29:22 | rshaffer@vmware.com | set | messageid: <1270060162.5.0.72366522178.issue1588@psf.upfronthosting.co.za> |
2010-03-31 18:29:22 | rshaffer@vmware.com | link | issue1588 messages |
2010-03-31 18:29:21 | rshaffer@vmware.com | create | |
|