octopus: disable gdlib by default (#43161)

This commit is contained in:
Ashwin Kumar Karnad 2024-03-13 20:04:39 +01:00 committed by GitHub
parent 8c33841567
commit 49ff816fb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -300,6 +300,12 @@ def configure_args(self):
args.append(f"{cxxflags} {gcc10_extra}")
args.append(f"{cflags} {gcc10_extra}")
# Disable flags
#
# disable gdlib explicitly to avoid
# autotools picking gdlib up from the system
args.append("--disable-gdlib")
return args
@run_after("install")