mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +00:00
8 lines
248 B
Plaintext
8 lines
248 B
Plaintext
def get_tls_setting(bb, d):
|
|
# until we have no prober TLS support in uclibc disable it
|
|
if bb.data.getVar('TARGET_OS', d, 1).find('uclibc') >= 0 :
|
|
return ""
|
|
return "--enable-glx-tls"
|
|
|
|
EXTRA_OECONF += "${@get_tls_setting(bb, d)}"
|