On 04/ 4/10 11:41 PM, Jack Schwartz wrote:
Hi everyone.

This easy webrev is for a fix to the DC finalizer script which copies files into the boot_archive. It fixes how whole-directories are excluded.

I have tested this fix by having built several images during Driver Update testing.

Webrev:
http://cr.opensolaris.org/~schwartz/100404.1/webrev/index.html

Bug:
http://defect.opensolaris.org/bz/show_bug.cgi?id=15290

   Thanks,
   Jack

_______________________________________________
caiman-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/caiman-discuss

Hey Jack,

I see what I think might be a problem with your solution. What if the item you are attempting to match is a substring match and not the full match?

For example:

>>> excitem="AAAA/BBB/CCC"
>>> excitem.find("AA")
0

This matches "AA" even though I think you only want to match "AAAA"

I think this proposed solution might be safer:

>>> EXCLUDES = "one "
>>> for i in excitem.split('/'):
...    if "AAA" == i:
...       EXCLUDES = EXCLUDES + "more excludes"
...
>>> print EXCLUDES
one
>>>


Correctly does not match "AAA"


>>> for i in excitem.split('/'):
...    if "AAAA" == i:
...       EXCLUDES = EXCLUDES + "more excludes"
...
>>> print EXCLUDES
one more excludes
>>>

but does correcly match "AAAA"


What do you think?

Joe
_______________________________________________
caiman-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/caiman-discuss

Reply via email to