Description: Report correct vendor string on x86_64
Forwarded: no

--- swiftlang-6.0.3.orig/swift/utils/swift_build_support/swift_build_support/products/product.py
+++ swiftlang-6.0.3/swift/utils/swift_build_support/swift_build_support/products/product.py
@@ -369,6 +369,10 @@ class Product(object):
                 vendor = 'alpine'
                 abi = 'musl'
 
+            # Debian uses "pc" as the vendor for x86_64
+            if 'pc-linux-gnu' in output:
+                vendor = 'pc'
+
             sysroot_arch, abi = arch_platform_to_abi.get(arch, (arch, abi))
 
         except BaseException:
