We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a10006 commit 10312f0Copy full SHA for 10312f0
rules_fortran/defs.bzl
@@ -293,7 +293,7 @@ def _compile(
293
struct(
294
source_file = source_file,
295
output_file = actions.declare_file(
296
- paths.replace_extension(source_file.basename, ".o"),
+ paths.replace_extension(source_file.path, ".o"),
297
),
298
module_files = [
299
actions.declare_file(module_file)
@@ -306,7 +306,7 @@ def _compile(
306
] + [
307
308
309
- output_file = actions.declare_file(paths.replace_extension(source_file.basename, ".o")),
+ output_file = actions.declare_file(paths.replace_extension(source_file.path, ".o")),
310
module_files = [],
311
)
312
for source_file in srcs_files
0 commit comments