Fix review

This commit is contained in:
Wildan M 2026-02-26 20:20:07 +07:00
parent b336b52f15
commit 48338847f1
No known key found for this signature in database
GPG Key ID: 01AC53185C679C79
2 changed files with 5 additions and 4 deletions

View File

@ -115,11 +115,12 @@ else ifeq ($(UNAME),FreeBSD)
FIND=gfind FIND=gfind
FUMOUNT=sudo umount FUMOUNT=sudo umount
VB_AUDIO=pulse # To check, will probably be OSS on most setups VB_AUDIO=pulse # To check, will probably be OSS on most setups
VBM=VBoxManage' VBM=VBoxManage
else ifeq ($(UNAME),Redox) else ifeq ($(UNAME),Redox)
PODMAN_BUILD=0 PODMAN_BUILD=0
# TODO: allow overriding to cross compiler toolchain when build server have one prebuilt
HOSTED_REDOX=1 HOSTED_REDOX=1
ifeq ($(shell which rustc),) ifneq ($(shell which repo),)
REPO_BIN=repo REPO_BIN=repo
endif endif
else else

View File

@ -1,8 +1,8 @@
# Configuration file for the build system dependencies # Configuration file for the build system dependencies
# Don't check for depends if you will be using Podman # Don't check for dependencies if you will be using Podman
ifneq ($(PODMAN_BUILD),1) ifneq ($(PODMAN_BUILD),1)
# Don't check for depends if you will be using Hosted Redox # Don't check for dependencies if you will be using Hosted Redox
ifneq ($(HOSTED_REDOX),1) ifneq ($(HOSTED_REDOX),1)
# don't check for Rust and Cargo if building on a Nix system # don't check for Rust and Cargo if building on a Nix system