blob: 6d585ecf4af7316688cfdd2c77fb1b7b90ee87b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
def get_alsa_versym_setting(bb, d):
# Versioned symbols don't work propery with uClibc
if bb.data.getVar('TARGET_OS', d, 1).find('uclibc') >= 0:
return "--with-versioned=no"
return ""
def get_alsa_versym_setting(bb, d):
# Versioned symbols don't work propery with uClibc
if bb.data.getVar('TARGET_OS', d, 1).find('uclibc') >= 0:
return "--with-versioned=no"
return ""
def get_alsa_versym_setting(bb, d):
# Versioned symbols don't work propery with uClibc
if bb.data.getVar('TARGET_OS', d, 1).find('uclibc') >= 0:
return "--with-versioned=no"
return ""
|