From: Mikko Rasa Date: Tue, 5 Dec 2017 07:54:06 +0000 (+0200) Subject: Fix a stupid bug in the extension generator X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=9b64473a06f9cb350e3a10726c40b6ec881f6a60 Fix a stupid bug in the extension generator --- diff --git a/scripts/extgen.py b/scripts/extgen.py index ff40ec60..35f01660 100755 --- a/scripts/extgen.py +++ b/scripts/extgen.py @@ -642,7 +642,7 @@ namespace GL { supp = f.api_support.get(self.host_api.name) src = None for e in self.source_exts: - if f in e.things: + if f.name in e.things: src = f elif supp: for s in supp.sources: