Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Treat os-family=ubuntu as os-family=debian #4441

Merged
merged 3 commits into from Nov 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion master_changes.md
Expand Up @@ -57,7 +57,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 @@ -85,6 +86,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