summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Winter <steffen.winter@proton.me>2023-11-27 00:31:10 +0100
committerSteffen Winter <steffen.winter@proton.me>2023-11-27 11:42:40 +0100
commit0585bc9cfbcb023ad10b57cbf52cc90623e6d307 (patch)
treef0e3f6e64153ceba9b44319ea663894687c027c5
parent831be262b0a88090bde36eee0dcac8e8abb7569b (diff)
Suppress all output from ROCm build
Similar to including external include files with `-isystem`, ignore output from ROCm build since these warnings aren't a concern here
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 89c5a33..f449606 100644
--- a/Makefile
+++ b/Makefile
@@ -218,7 +218,8 @@ endif
P := %%
ifeq ($(VERBOSE),true)
- override SUPPRESS := 1>/dev/null
+ # Doesn't work with `&>`
+ override SUPPRESS := > /dev/null 2> /dev/null
else
override SUPPRESS :=
endif