From 6043834d4532b67cab6e01783883467f0db96b99 Mon Sep 17 00:00:00 2001 From: Rasmus Pedersen Date: Fri, 1 Sep 2017 13:53:05 +0200 Subject: [PATCH] sorry about the syntax error --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 32704e70f..5bbd99e9e 100644 --- a/setup.py +++ b/setup.py @@ -600,7 +600,7 @@ def determine_gl_flags(): flags['library_dirs'] = ['/opt/vc/lib'] from platform import linux_distribution dist = linux_distribution() - if if dist[0] == 'debian' and float(dist[1]) >= 9.1: + if dist[0] == 'debian' and float(dist[1]) >= 9.1: flags['libraries'] = ['bcm_host', 'brcmEGL', 'brcmGLESv2'] else: flags['libraries'] = ['bcm_host', 'EGL', 'GLESv2']