We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 692ebac commit a13e210Copy full SHA for a13e210
sbin/system-setup.py
@@ -22,7 +22,7 @@ def common_first(self):
22
self.pip_install("wheel")
23
self.pip_install("setuptools --upgrade")
24
25
- self.install("git rsync tar")
+ self.install("git rsync")
26
27
if not self.has_command("clang"):
28
self.run("%s/bin/getclang --modern" % READIES)
@@ -35,6 +35,8 @@ def debian_compat(self):
35
self.run("%s/bin/getgcc" % READIES)
36
37
def redhat_compat(self):
38
+ if self.osnick == 'ol8':
39
+ self.install("tar")
40
self.run("%s/bin/enable-utf8" % READIES)
41
self.install("redhat-lsb-core")
42
self.run("%s/bin/getgcc --modern" % READIES)
0 commit comments