[Python-checkins] python/nondist/sandbox/msi msilib.py,1.6,1.7
loewis at projects.sourceforge.net
loewis at projects.sourceforge.net
Sun Feb 1 13:03:39 EST 2004
Update of /cvsroot/python/python/nondist/sandbox/msi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18379
Modified Files:
msilib.py
Log Message:
Support flags on components
Index: msilib.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/msi/msilib.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** msilib.py 7 Jan 2004 22:04:10 -0000 1.6
--- msilib.py 1 Feb 2004 18:03:36 -0000 1.7
***************
*** 413,423 ****
add_data(db, "Directory", [(logical, blogical, default)])
! def start_component(self, component, feature = None, keyfile = None):
uuid = gen_uuid()
self.component = component
if Win64:
! flags = 256
! else:
! flags = 0
if keyfile:
keyid = self.cab.gen_id(self.absolute, keyfile)
--- 413,421 ----
add_data(db, "Directory", [(logical, blogical, default)])
! def start_component(self, component, feature = None, flags = 0, keyfile = None):
uuid = gen_uuid()
self.component = component
if Win64:
! flags |= 256
if keyfile:
keyid = self.cab.gen_id(self.absolute, keyfile)
More information about the Python-checkins
mailing list