Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Redirect stderr to stop make from complaining about missing dpkg
  • Loading branch information
jmatth committed Dec 3, 2025
commit 07827f0ad8f1d19a56e56a0bee70f66c2039d5df
2 changes: 1 addition & 1 deletion packaging.make
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUILD_CHANNEL?=local
# note: UNAME_M is overrideable because it is wrong in 32-bit arm container executing natively on 64-bit arm
UNAME_M ?= $(shell uname -m)
ifneq ($(shell which dpkg), "")
ifneq ($(shell which dpkg 2>/dev/null), "")
DPKG_ARCH ?= $(shell dpkg --print-architecture)
APPIMAGE_ARCH ?= $(shell dpkg --print-architecture)
endif
Expand Down