- Timestamp:
- Jun 25, 2009 4:09:53 PM (16 years ago)
- Location:
- trunk/src/libs/xpcom18a4/python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/Makefile.kmk
r20948 r20951 24 24 25 25 # list of supported Python versions 26 $(eval $( shell $(VBOX_BLD_PYTHON) $(PATH_SUB_CURRENT)/gen_python_deps.py))26 $(eval $(patsubst %|,%$(NL) ,$(shell $(VBOX_BLD_PYTHON) $(PATH_SUB_CURRENT)/gen_python_deps.py))) 27 27 28 28 # Python Client Module - the C++/XPCOM bits. -
trunk/src/libs/xpcom18a4/python/gen_python_deps.py
r20936 r20951 49 49 d = k 50 50 vers = k.replace('.', '') 51 print "VBOX_PYTHON%s_INC=%s " %(vers, known[k][0])52 print "VBOX_PYTHON%s_LIB=%s " %(vers, known[k][1])51 print "VBOX_PYTHON%s_INC=%s|" %(vers, known[k][0]) 52 print "VBOX_PYTHON%s_LIB=%s|" %(vers, known[k][1]) 53 53 if d is not None: 54 print "VBOX_PYTHONDEF_INC=%s " %(known[d][0])55 print "VBOX_PYTHONDEF_LIB=%s " %(known[d][1])54 print "VBOX_PYTHONDEF_INC=%s|" %(known[d][0]) 55 print "VBOX_PYTHONDEF_LIB=%s|" %(known[d][1]) 56 56 57 57 if __name__ == '__main__':
Note:
See TracChangeset
for help on using the changeset viewer.