summaryrefslogtreecommitdiffstats
path: root/recipes-extended/ceph/ceph/0001-delete-install-layout-deb.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-extended/ceph/ceph/0001-delete-install-layout-deb.patch')
-rw-r--r--recipes-extended/ceph/ceph/0001-delete-install-layout-deb.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/recipes-extended/ceph/ceph/0001-delete-install-layout-deb.patch b/recipes-extended/ceph/ceph/0001-delete-install-layout-deb.patch
new file mode 100644
index 00000000..91eacfa9
--- /dev/null
+++ b/recipes-extended/ceph/ceph/0001-delete-install-layout-deb.patch
@@ -0,0 +1,37 @@
1From 903bb882a44eb5567f8b1fc7f7c4857c2f03579d Mon Sep 17 00:00:00 2001
2From: Chen Qi <Qi.Chen@windriver.com>
3Date: Wed, 13 Mar 2024 03:41:47 -0700
4Subject: [PATCH] delete install-layout=deb
5
6Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
7---
8 cmake/modules/Distutils.cmake | 6 ------
9 1 file changed, 6 deletions(-)
10
11diff --git a/cmake/modules/Distutils.cmake b/cmake/modules/Distutils.cmake
12index daaae4ba6..e606e3890 100644
13--- a/cmake/modules/Distutils.cmake
14+++ b/cmake/modules/Distutils.cmake
15@@ -30,9 +30,6 @@ function(distutils_install_module name)
16 install(CODE "
17 set(options --prefix=${CMAKE_INSTALL_PREFIX})
18 if(DEFINED ENV{DESTDIR})
19- if(EXISTS /etc/debian_version)
20- list(APPEND options --install-layout=deb)
21- endif()
22 list(APPEND options
23 --root=\$ENV{DESTDIR}
24 --single-version-externally-managed)
25@@ -136,9 +133,6 @@ function(distutils_install_cython_module name)
26
27 set(options --prefix=${CMAKE_INSTALL_PREFIX})
28 if(DEFINED ENV{DESTDIR})
29- if(EXISTS /etc/debian_version)
30- list(APPEND options --install-layout=deb)
31- endif()
32 list(APPEND options --root=\$ENV{DESTDIR})
33 else()
34 list(APPEND options --root=/)
35--
362.42.0
37