summaryrefslogtreecommitdiff
path: root/lib/Driver
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2017-10-25 14:25:28 +0000
committerSylvestre Ledru <sylvestre@debian.org>2017-10-25 14:25:28 +0000
commitb3749a3005224bbd2941a3517088a19002d81134 (patch)
tree2db9aa5e01ef5668dee961b9d8976dc9ebc69573 /lib/Driver
parentd26e800a52facae18ce2324dcd328ba575995c82 (diff)
Add support of the next Debian (Debian buster - version 10)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@316579 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver')
-rw-r--r--lib/Driver/Distro.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Driver/Distro.cpp b/lib/Driver/Distro.cpp
index 437641b23d..9a0b854e32 100644
--- a/lib/Driver/Distro.cpp
+++ b/lib/Driver/Distro.cpp
@@ -89,6 +89,8 @@ static Distro::DistroType DetectDistro(vfs::FileSystem &VFS) {
return Distro::DebianJessie;
case 9:
return Distro::DebianStretch;
+ case 10:
+ return Distro::DebianBuster;
default:
return Distro::UnknownDistro;
}