Lines Matching full:output_path
203 def write_components(self, output_path):
257 directory_path = os.path.join(output_path, subpath[1:])
319 def write_library_table(self, output_path, enabled_optional_components):
385 make_install_dir(os.path.dirname(output_path))
386 f = open(output_path+'.new', 'w')
428 if not os.path.isfile(output_path):
429 os.rename(output_pathoutput_path)
430 elif filecmp.cmp(output_path, output_path+'.new'):
431 os.remove(output_path+'.new')
433 os.remove(output_path)
434 os.rename(output_path+'.new', output_path)
535 def write_cmake_fragment(self, output_path, enabled_optional_components):
537 write_cmake_fragment(output_path) -> None
548 make_install_dir(os.path.dirname(output_path))
549 f = open(output_path, 'w')
554 header_name = os.path.basename(output_path)
618 def write_cmake_exports_fragment(self, output_path, enabled_optional_components):
620 write_cmake_exports_fragment(output_path) -> None
630 make_install_dir(os.path.dirname(output_path))
631 f = open(output_path, 'w')
654 def write_make_fragment(self, output_path, enabled_optional_components):
656 write_make_fragment(output_path) -> None
667 make_install_dir(os.path.dirname(output_path))
668 f = open(output_path, 'w')
673 header_name = os.path.basename(output_path)
705 f.write("%s: \\\n" % (mk_quote_string_for_target(output_path),))