Skip to content

Commit

Permalink
Merge pull request #4441 from alan-j-hu/mint-ubuntu
Browse files Browse the repository at this point in the history
Treat os-family=ubuntu as os-family=debian
  • Loading branch information
rjbou committed Nov 26, 2020
2 parents e93dd4a + 0f61533 commit 0f9d3c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion master_changes.md
Expand Up @@ -58,7 +58,8 @@ New option/command/subcommand are prefixed with ◈.
## External dependencies
* Add support for NetBSD and DragonFlyBSD [#4396 @kit-ty-kate]
* Fix OpenBSD, FreeBSD and Gentoo: Allow short names and full name paths for ports-based systems [#4396 @kit-ty-kate]

* Handle the case where `os-family=ubuntu` as `os-family=debian` [#4441 @alan-j-hu]

## Sandbox
*

Expand Down Expand Up @@ -86,6 +87,9 @@ New option/command/subcommand are prefixed with ◈.
## Opam installer
*

## State
*

## Solver
* Fix missing conflict message when trying to remove required packages [#4362 @AltGr]
* Fix the Z3 backend for upgrades [#4393 @AltGr]
Expand Down
2 changes: 1 addition & 1 deletion src/state/opamSysInteract.ml
Expand Up @@ -118,7 +118,7 @@ let family =
Printf.ksprintf failwith
"External dependency handling not supported for OS family 'bsd'."
end
| "debian" -> Debian
| "debian" | "ubuntu" -> Debian
| "gentoo" -> Gentoo
| "homebrew" -> Homebrew
| "macports" -> Macports
Expand Down

0 comments on commit 0f9d3c9

Please sign in to comment.