This patch is to fix problem on following sed script sed -e's,\(NAMELEN\s\+\)44\(\s\*\)\?,\1256,' $f.namelen >$f
This script want to change value of NAMELEN from 44 to 256, but it does not work on Solaris. Script like following can resolve the problem. sed -e's,\(NAMELEN\ \ *\)44,\1256,' $f.namelen >$f -------------- next part -------------- A non-text attachment was scrubbed... Name: docbook-dtds-sed.diff Type: text/x-patch Size: 645 bytes Desc: not available URL: <http://mail.opensolaris.org/pipermail/jds-review/attachments/20070228/626975fc/attachment.bin>
