mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-22 04:44:19 +08:00
Merge branch 'fix-meta-binary' into 'master'
Fix repo_binary for metapackages See merge request redox-os/redox!1893
This commit is contained in:
commit
a1afbefd14
@ -181,6 +181,10 @@ impl BuildRecipe {
|
||||
}
|
||||
|
||||
pub fn set_as_remote(&mut self) {
|
||||
if self.kind == BuildKind::None {
|
||||
// BuildKind::Remote won't handle remote meta-packages
|
||||
return;
|
||||
}
|
||||
self.kind = BuildKind::Remote;
|
||||
self.dev_dependencies = Vec::new();
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user