From 19b64f2693ebb172c2e4906fbcf3990b39d37882 Mon Sep 17 00:00:00 2001 From: Florian Friedrich Date: Wed, 12 Apr 2017 09:51:25 +0200 Subject: [PATCH] Fix building on RasPis --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index ac4e8f7488..152ec97b00 100644 --- a/build.py +++ b/build.py @@ -81,7 +81,7 @@ ] triple = Configuration.current.target.triple -if triple.endswith("-linux-gnu") or triple == "armv7-none-linux-androideabi": +if triple.find("linux") != -1: foundation.LDFLAGS += '-lcurl ' if triple == "armv7-none-linux-androideabi":