Skip to content

Commit

Permalink
Merge pull request #2135 from tweag/cb/fix-cabal-sublib-deps
Browse files Browse the repository at this point in the history
Fix building cabal sub-libraries
  • Loading branch information
mergify[bot] authored Mar 13, 2024
2 parents dce897a + fbabf30 commit 8a59b40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion haskell/cabal.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2154,7 +2154,7 @@ haskell_cabal_binary(
for sublib in all_components[name].sublibs:
sublib_component_deps = [
_resolve_component_target_name(name, c)
for c in package_components_dependencies.get("lib:".format(sublib), [])
for c in package_components_dependencies.get("lib:{}".format(sublib), [])
]
build_file_builder.append(
"""
Expand Down

0 comments on commit 8a59b40

Please sign in to comment.