File: cmake-4.patch

package info (click to toggle)
grub-customizer 5.2.5-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,296 kB
  • sloc: cpp: 14,887; sh: 4; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 371 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: Fix FTBFS with CMake 4
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/1112981

--- grub-customizer-5.2.5.orig/CMakeLists.txt
+++ grub-customizer-5.2.5/CMakeLists.txt
@@ -1,5 +1,5 @@
 project(GrubCustomizer)
-cmake_minimum_required(VERSION 2.6.2) # may be lower
+cmake_minimum_required(VERSION 3.5)
 
 ADD_DEFINITIONS(-std=c++11)