Skip to content

Commit

Permalink
Fix "recursive" argument in "find_libraries" example. (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiLacroix-IDRIS committed Nov 8, 2020
1 parent 01baf15 commit 70ba6bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorial_advanced_packaging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ follow this naming scheme must implement this function themselves, e.g.
def libs(self):
shared = "+shared" in self.spec
return find_libraries(
"libopencv_*", root=self.prefix, shared=shared, recurse=True
"libopencv_*", root=self.prefix, shared=shared, recursive=True
)
This issue is common for packages which implement an interface (i.e.
Expand Down

0 comments on commit 70ba6bc

Please sign in to comment.