Browse Source

glibc-external-version.inc: skip version for non-external builds

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Christopher Larson 3 years ago
parent
commit
e7fef5b9bd
1 changed files with 9 additions and 7 deletions
  1. 9 7
      recipes-external/glibc/glibc-external-version.inc

+ 9 - 7
recipes-external/glibc/glibc-external-version.inc

@@ -1,11 +1,13 @@
 def get_external_libc_version(d):
-    sopattern = os.path.join(d.getVar('base_libdir', True), 'libc-*.so')
-    found_paths = oe.external.find_sysroot_files([sopattern], d)
-    if found_paths:
-        so_paths = found_paths[0]
-        if so_paths:
-            soname = os.path.basename(so_paths[0])
-            return soname[5:-3]
+    if (d.getVar('TCMODE', True).startswith('external') and
+            d.getVar('EXTERNAL_TOOLCHAIN', True)):
+        sopattern = os.path.join(d.getVar('base_libdir', True), 'libc-*.so')
+        found_paths = oe.external.find_sysroot_files([sopattern], d)
+        if found_paths:
+            so_paths = found_paths[0]
+            if so_paths:
+                soname = os.path.basename(so_paths[0])
+                return soname[5:-3]
 
     return 'UNKNOWN'