User:Bugman/subsystems: Difference between revisions

Jump to navigation Jump to search
→‎Script: Another bug fix.
(→‎All subsystems: Updated the output to match the newest script.)
(→‎Script: Another bug fix.)
Line 506: Line 506:
                 # Output the source files.
                 # Output the source files.
                 if self.output_format in ["files", "declaration files"]:
                 if self.output_format in ["files", "declaration files"]:
                     print("%s" % subsystem.declaration_file)
                     if subsystem.full_path:
                        print("%s%s%s" % (subsystem.root_path, sep, subsystem.declaration_file))
                    else:
                        print("%s" % subsystem.declaration_file)
                 if self.output_format in ["files", "implementation files"]:
                 if self.output_format in ["files", "implementation files"]:
                     if subsystem.implementation_file:
                     if subsystem.implementation_file:
                         print("%s" % subsystem.implementation_file)
                         if subsystem.full_path:
                            print("%s%s%s" % (subsystem.root_path, sep, subsystem.implementation_file))
                        else:
                            print("%s" % subsystem.implementation_file)


             # Skip the rest of the function.
             # Skip the rest of the function.

Navigation menu