From: Sylvestre Ledru Date: Fri, 19 Apr 2019 13:48:52 +0000 (+0000) Subject: Debian: Add two missing version code in sid X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33da8db674263d046b3a02d752d4115f5fc36869;p=clang Debian: Add two missing version code in sid git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@358758 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Distro.cpp b/lib/Driver/Distro.cpp index 659aa06e3f..f2a3074d1e 100644 --- a/lib/Driver/Distro.cpp +++ b/lib/Driver/Distro.cpp @@ -105,6 +105,8 @@ static Distro::DistroType DetectDistro(llvm::vfs::FileSystem &VFS) { .Case("wheezy/sid", Distro::DebianWheezy) .Case("jessie/sid", Distro::DebianJessie) .Case("stretch/sid", Distro::DebianStretch) + .Case("buster/sid", Distro::DebianBuster) + .Case("bullseye/sid", Distro::DebianBullseye) .Default(Distro::UnknownDistro); }