# File lib/fpm/package.rb, line 262
  def build_path(path=nil)
    @build_path ||= Stud::Temporary.directory("package-#{type}-build")

    if path.nil?
      return @build_path
    else
      return File.join(@build_path, path)
    end
  end