Skip to content

Commit

Permalink
depext: relax OpenBSD lookup for installed packages
Browse files Browse the repository at this point in the history
uses the whole list of installed packages for depext, and not only the packages 
manually installed.
  • Loading branch information
semarie committed Jan 11, 2025
1 parent 26290a4 commit 37431e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state/opamSysInteract.ml
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ let packages_status ?(env=OpamVariable.Map.empty) config packages =
compute_sets sys_installed
| Openbsd ->
let sys_installed =
run_query_command "pkg_info" ["-mqP"]
run_query_command "pkg_info" ["-qP"]
|> package_set_of_pkgpath
in
compute_sets sys_installed
Expand Down

0 comments on commit 37431e9

Please sign in to comment.