Gets the path to the file.
(path)
| 419 | ########################################################################################### |
| 420 | # private path functions |
| 421 | def __get_path(path): |
| 422 | """Gets the path to the file.""" |
| 423 | if not os.path.isabs(path): |
| 424 | path = os.path.join(os.getcwd(), path) |
| 425 | |
| 426 | return os.path.normpath(path) |
| 427 | |
| 428 | |
| 429 | def __output_path(toolchain, rule, output_dir): |