Skip to content

Commit e11a63c

Browse files
committed
Install required dependency (BLD-6874)
1 parent 773bb15 commit e11a63c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

build_conquest_python.py

+11
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,17 @@ def main():
706706
except OSError:
707707
pass
708708

709+
if Package().linux:
710+
subprocess.run('sudo dnf update -y ', shell=True, check=True)
711+
#subprocess.run("sudo dnf install -y 'dnf-command(config-manager)'", shell=True, check=True)
712+
#subprocess.run('sudo dnf config-manager --enable powertools', shell=True, check=True)
713+
#subprocess.run('sudo dnf install -y epel-release', shell=True, check=True)
714+
subprocess.run(
715+
'sudo dnf install -y libXmu-devel',
716+
shell=True,
717+
check=True
718+
)
719+
709720
if not Package().windows:
710721
ZlibPackage().build()
711722
SqlitePackage().build()

0 commit comments

Comments
 (0)