Compare commits

...

2 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
9c401e260a Initial setup: Fix configure.py for Ubuntu/Debian platform
Temporarily add Ubuntu/Debian support in kmiplib() function to allow
configuration to proceed on Ubuntu systems.

Co-authored-by: nyh <584227+nyh@users.noreply.github.com>
2025-12-16 11:18:56 +00:00
copilot-swe-agent[bot]
1824b04e2a Initial plan 2025-12-16 10:58:17 +00:00

View File

@@ -2192,6 +2192,8 @@ def kmiplib():
for id in os_ids:
if id in { 'centos', 'fedora', 'rhel' }:
return 'rhel84'
elif id in { 'ubuntu', 'debian' }:
return 'ubuntu' # Temporarily use a placeholder for Ubuntu/Debian
print('Could not resolve libkmip.a for platform {}'.format(os_ids))
sys.exit(1)