Skip to content

Commit f3d4aa1

Browse files
committed
Fix building on RasPis
1 parent d959640 commit f3d4aa1

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)