Skip to content

Commit 7d56642

Browse files
committed
Install required dependency (BLD-6874)
1 parent fe41105 commit 7d56642

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

build_conquest_python.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -707,6 +707,17 @@ def main():
707707
except OSError:
708708
pass
709709

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

0 commit comments

Comments
 (0)