Skip to content

Commit 0c10130

Browse files
authored
Use system gcc in Ubuntu 16 (#1615)
1 parent bd1fdca commit 0c10130

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

sbin/system-setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,7 @@ def common_first(self):
2525

2626
def debian_compat(self):
2727
self.install("locales")
28-
if self.dist == 'ubuntu' and int(self.ver.split('.')[0]) < 18:
29-
self.run("%s/bin/getgcc --modern" % READIES)
30-
else:
31-
self.run("%s/bin/getgcc" % READIES)
28+
self.run("%s/bin/getgcc" % READIES)
3229
self.install("peg")
3330

3431
def redhat_compat(self):

0 commit comments

Comments
 (0)