From cf746004d493396d3e201f9d5733a3e2d64dba08 Mon Sep 17 00:00:00 2001 From: Chase Wright Date: Mon, 9 May 2022 09:01:56 -0500 Subject: [PATCH] Update guac-install.sh Fix from #222 - Ignore warnings when compiling? --- guac-install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guac-install.sh b/guac-install.sh index 163fe8e..414234a 100755 --- a/guac-install.sh +++ b/guac-install.sh @@ -417,6 +417,9 @@ cd guacamole-server-${GUACVERSION}/ echo -e "${BLUE}Building Guacamole-Server with GCC $( gcc --version | head -n1 | grep -oP '\)\K.*' | awk '{print $1}' ) ${NC}" +# Fix for warnings #222 +export CFLAGS="-Wno-error" + echo -e "${BLUE}Configuring Guacamole-Server. This might take a minute...${NC}" ./configure --with-systemd-dir=/etc/systemd/system &>> ${LOG} if [ $? -ne 0 ]; then