From 77b9043a582dd1b216794c11ee74d1d63416a127 Mon Sep 17 00:00:00 2001 From: marco <5336-marco-guest@users.noreply.salsa.debian.org> Date: Wed, 25 Jan 2023 10:26:19 +0000 Subject: [PATCH] Delete ubuntu-groovy.diff Already done in commit 31ed5880c001eb164c7d675b81f9472f7018106e, but accidentally re-introduced in a later merge --- debian/patches/ubuntu-groovy.diff | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 debian/patches/ubuntu-groovy.diff diff --git a/debian/patches/ubuntu-groovy.diff b/debian/patches/ubuntu-groovy.diff deleted file mode 100644 index 800a70a8..00000000 --- a/debian/patches/ubuntu-groovy.diff +++ /dev/null @@ -1,29 +0,0 @@ ---- a/clang/include/clang/Driver/Distro.h -+++ b/clang/include/clang/Driver/Distro.h -@@ -67,6 +67,7 @@ public: - UbuntuDisco, - UbuntuEoan, - UbuntuFocal, -+ UbuntuGroovy, - UnknownDistro - }; - -@@ -120,7 +121,7 @@ public: - } - - bool IsUbuntu() const { -- return DistroVal >= UbuntuHardy && DistroVal <= UbuntuFocal; -+ return DistroVal >= UbuntuHardy && DistroVal <= UbuntuGroovy; - } - - bool IsAlpineLinux() const { ---- a/clang/lib/Driver/Distro.cpp -+++ b/clang/lib/Driver/Distro.cpp -@@ -70,6 +70,7 @@ static Distro::DistroType DetectDistro(l - .Case("disco", Distro::UbuntuDisco) - .Case("eoan", Distro::UbuntuEoan) - .Case("focal", Distro::UbuntuFocal) -+ .Case("groovy", Distro::UbuntuGroovy) - .Default(Distro::UnknownDistro); - if (Version != Distro::UnknownDistro) - return Version;