diff --git a/debian/patches/series b/debian/patches/series index 0b23267d..a58f5b2a 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -145,4 +145,3 @@ unwind-force-pthread-dl.diff force-sse2-compiler-rt.diff bolt-disable-emit-relocs.patch link-grpc.diff -ubuntu-releases.patch diff --git a/debian/patches/ubuntu-releases.patch b/debian/patches/ubuntu-releases.patch deleted file mode 100644 index a2d7fbe2..00000000 --- a/debian/patches/ubuntu-releases.patch +++ /dev/null @@ -1,38 +0,0 @@ -Description: Update the list of Ubuntu release names -Forwarded: no -Author: Graham Inggs -Last-Update: 2023-04-29 - -Index: llvm-toolchain-17-17.0.3/clang/include/clang/Driver/Distro.h -=================================================================== ---- llvm-toolchain-17-17.0.3.orig/clang/include/clang/Driver/Distro.h -+++ llvm-toolchain-17-17.0.3/clang/include/clang/Driver/Distro.h -@@ -78,6 +78,7 @@ - UbuntuKinetic, - UbuntuLunar, - UbuntuMantic, -+ UbuntuNoble, - UnknownDistro - }; - -@@ -129,7 +130,7 @@ - } - - bool IsUbuntu() const { -- return DistroVal >= UbuntuHardy && DistroVal <= UbuntuMantic; -+ return DistroVal >= UbuntuHardy && DistroVal <= UbuntuNoble; - } - - bool IsAlpineLinux() const { return DistroVal == AlpineLinux; } -Index: llvm-toolchain-17-17.0.3/clang/lib/Driver/Distro.cpp -=================================================================== ---- llvm-toolchain-17-17.0.3.orig/clang/lib/Driver/Distro.cpp -+++ llvm-toolchain-17-17.0.3/clang/lib/Driver/Distro.cpp -@@ -94,6 +94,7 @@ - .Case("kinetic", Distro::UbuntuKinetic) - .Case("lunar", Distro::UbuntuLunar) - .Case("mantic", Distro::UbuntuMantic) -+ .Case("noble", Distro::UbuntuNoble) - .Default(Distro::UnknownDistro); - return Version; - }