From 821d92d50060c83fc7672c1efcee60053d16b865 Mon Sep 17 00:00:00 2001 From: pancake Date: Wed, 8 Jun 2022 21:14:58 +0200 Subject: [PATCH] Fix noisy pkg-config warnings in sys/install.sh --- sys/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/install.sh b/sys/install.sh index b88403394e..b0009204d3 100755 --- a/sys/install.sh +++ b/sys/install.sh @@ -115,9 +115,9 @@ else fi NEED_CAPSTONE=1 -pkg-config --cflags capstone 2>&1 > /dev/null +pkg-config --cflags capstone > /dev/null 2>&1 if [ $? = 0 ]; then - pkg-config --atleast-version=5.0.0 capstone 2>/dev/null + pkg-config --atleast-version=5.0.0 capstone >/dev/null 2>&1 if [ $? = 0 ]; then pkg-config --variable=archs capstone 2> /dev/null | grep -q riscv if [ $? = 0 ]; then