mirror of
				https://git.koehlerweb.org/frodovdr/guac-install
				synced 2025-10-31 07:36:39 +01:00 
			
		
		
		
	Workaround for Non-release versions of FreeRDP (#166)
* Workaround for Non-release versions of FreeRDP took the workaround from the upgrade script and put it in the install script * fixed syntax error
This commit is contained in:
		| @@ -412,8 +412,13 @@ echo -e "${BLUE}Building Guacamole-Server with GCC $( gcc --version | head -n1 | | |||||||
| echo -e "${BLUE}Configuring Guacamole-Server. This might take a minute...${NC}" | echo -e "${BLUE}Configuring Guacamole-Server. This might take a minute...${NC}" | ||||||
| ./configure --with-init-dir=/etc/init.d  &>> ${LOG} | ./configure --with-init-dir=/etc/init.d  &>> ${LOG} | ||||||
| if [ $? -ne 0 ]; then | if [ $? -ne 0 ]; then | ||||||
|     echo -e "${RED}Failed. See ${LOG}${NC}" 1>&2 |     echo "Failed to configure guacamole-server" | ||||||
|     exit 1 |     echo "Trying again with --enable-allow-freerdp-snapshots" | ||||||
|  |     ./configure --with-init-dir=/etc/init.d --enable-allow-freerdp-snapshots | ||||||
|  |     if [ $? -ne 0 ]; then | ||||||
|  |         echo "Failed to configure guacamole-server - again" | ||||||
|  |         exit | ||||||
|  |     fi | ||||||
| else | else | ||||||
|     echo -e "${GREEN}OK${NC}" |     echo -e "${GREEN}OK${NC}" | ||||||
| fi | fi | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user