class Build::Files::Path

def to_absolute(root)

Ensure the path has an absolute root if it doesn't already:
def to_absolute(root)
	if @root == "."
		self.rebase(root)
	else
		self
	end
end