try:
	from zLOG import LOG, INFO
	from Products.PortalTransforms.libtransforms import utils 
	import os
	
	bin_search_path = utils.bin_search_path + os.environ['PATH'].split(':')
	
	LOG("PatchPortalTransforms", INFO, "Patching PortalTransforms.libtransforms.utils")
	utils.bin_search_path = bin_search_path
    
except ImportError:
    pass

