Skip to content

Commit 19b64f2

Browse files
committed
Fix building on RasPis
1 parent 7922083 commit 19b64f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
]
8282

8383
triple = Configuration.current.target.triple
84-
if triple.endswith("-linux-gnu") or triple == "armv7-none-linux-androideabi":
84+
if triple.find("linux") != -1:
8585
foundation.LDFLAGS += '-lcurl '
8686

8787
if triple == "armv7-none-linux-androideabi":

0 commit comments

Comments
 (0)